Passed
Push — master ( 2d132c...284d4e )
by Curtis
25:03 queued 22:10
created
src/factories/PersonNameRomnFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             'group' => $this->faker->word(), 'gid' => $this->faker->randomElement('1', '2'),
26 26
             'type'  => $this->faker->word(), 'name' => $this->faker->name(),
27 27
             'npfx'  => $this->faker->word(), 'givn' => $this->faker->firstName(),
28
-            'nick'  => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(),  'nsfx', 'created_at', 'updated_at',
28
+            'nick'  => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(), 'nsfx', 'created_at', 'updated_at',
29 29
         ];
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
...25_031507_set_string_column_husband_id_and_wife_id_to_families_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('families', function (Blueprint $table) {
16
+        Schema::table('families', function(Blueprint $table) {
17 17
             $table->string('husband_id')->nullable()->change();
18 18
             $table->string('wife_id')->nullable()->change();
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('families', function (Blueprint $table) {
29
+        Schema::table('families', function(Blueprint $table) {
30 30
             $table->integer('husband_id')->nullable()->change();
31 31
             $table->integer('wife_id')->nullable()->change();
32 32
         });
Please login to merge, or discard this patch.
2021_08_26_203800_add_microsecond_in_column_chan_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->dateTime('chan', 3)->nullable()->after('deleted_at');
18 18
         });
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('people', function (Blueprint $table) {
28
+        Schema::table('people', function(Blueprint $table) {
29 29
             $table->dropColumn('chan');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
2021_08_25_155050_add_column_burialday_and_burial_year_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->date('burial_day')->nullable()->after('death_year');
18 18
             $table->smallInteger('burial_year')->nullable()->after('burial_day');
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('people', function (Blueprint $table) {
29
+        Schema::table('people', function(Blueprint $table) {
30 30
             $table->dropColumn(['burial_day', 'burial_year']);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.
src/migrations/2021_08_25_173355_drop_column_chan_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->dropColumn('chan');
18 18
         });
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('people', function (Blueprint $table) {
28
+        Schema::table('people', function(Blueprint $table) {
29 29
             $table->string('chan')->nullable()->after('deleted_at');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
2021_08_25_121115_add_column_birth_year_and_death_year_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->smallInteger('birth_year')->nullable()->after('birthday');
18 18
             $table->smallInteger('death_year')->nullable()->after('deathday');
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('people', function (Blueprint $table) {
29
+        Schema::table('people', function(Blueprint $table) {
30 30
             $table->dropColumn(['birth_year', 'death_year']);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.
migrations/2021_08_27_192146_add_column_titl_and_chr_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->string('titl')->nullable();
18 18
             $table->date('chr')->nullable();
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('people', function (Blueprint $table) {
29
+        Schema::table('people', function(Blueprint $table) {
30 30
             $table->dropColumn(['titl', 'chr']);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.
src/migrations/2021_08_27_183956_add_column_month_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->unsignedTinyInteger('birth_month')->nullable()->after('birthday');
18 18
             $table->unsignedTinyInteger('death_month')->nullable()->after('deathday');
19 19
             $table->unsignedTinyInteger('burial_month')->nullable()->after('burial_day');
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function down()
29 29
     {
30
-        Schema::table('people', function (Blueprint $table) {
30
+        Schema::table('people', function(Blueprint $table) {
31 31
             $table->dropColumn(['birth_month', 'death_month', 'burial_month']);
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
src/migrations/2021_08_24_181610_add_column_uid_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->string('uid')->nullable();
18 18
         });
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('people', function (Blueprint $table) {
28
+        Schema::table('people', function(Blueprint $table) {
29 29
             $table->dropColumn('uid');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.