Passed
Push — master ( 0b6474...9f87cc )
by Curtis
06:39 queued 03:56
created
...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.
2021_08_26_222539_add_column_dati_plac_famc_fams_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('birthday_dati')->nullable();
18 18
             $table->string('birthday_plac')->nullable();
19 19
             $table->string('deathday_dati')->nullable();
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function down()
35 35
     {
36
-        Schema::table('people', function (Blueprint $table) {
36
+        Schema::table('people', function(Blueprint $table) {
37 37
             $table->dropColumn([
38 38
                 'birthday_dati',
39 39
                 'birthday_plac',
Please login to merge, or discard this patch.