Passed
Push — master ( 1bd07e...86e726 )
by Curtis
04:35 queued 55s
created
src/migrations/2020_06_03_192100_add_columns_for_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::table('people', function (Blueprint $table) {
11
+        Schema::table('people', function(Blueprint $table) {
12 12
             $table->string('gid')->nullable();
13 13
             $table->string('givn')->nullable();
14 14
             $table->string('surn', 191)->nullable();
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function down()
34 34
     {
35
-        Schema::table('people', function ($table) {
35
+        Schema::table('people', function($table) {
36 36
             //    $table->string('bank');
37 37
             //    $table->string('bank_account');
38 38
             $table->dropColumn('gid');
Please login to merge, or discard this patch.
src/migrations/2020_08_21_110811_create_person_name_fone_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('person_name_fone', function (Blueprint $table) {
16
+        Schema::create('person_name_fone', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->integer('gid')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_24_095241_create_person_anci_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('person_anci', function (Blueprint $table) {
16
+        Schema::create('person_anci', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->integer('gid')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_01_01_120000_create_default_people_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     public function up()
10 10
     {
11 11
         if (!Schema::hasTable('people')) {
12
-            Schema::create('people', function (Blueprint $table) {
12
+            Schema::create('people', function(Blueprint $table) {
13 13
                 $table->increments('id');
14 14
 
15 15
                 $table->tinyInteger('title')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_09_12_151600_add_column_for_media_objects_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('media_objects', function (Blueprint $table) {
16
+        Schema::table('media_objects', function(Blueprint $table) {
17 17
             $table->string('rin')->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('media_objects', function ($table) {
28
+        Schema::table('media_objects', function($table) {
29 29
             $table->dropColumn('rin');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
src/migrations/2020_08_31_092310_create_source_repo_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('source_repo', function (Blueprint $table) {
16
+        Schema::create('source_repo', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group');
19 19
             $table->integer('gid');
Please login to merge, or discard this patch.
src/migrations/2020_06_24_090326_create_sourceref_even_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('sourceref_even', function (Blueprint $table) {
16
+        Schema::create('sourceref_even', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->integer('gid')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_09_12_000100_update_person_events_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         //
17 17
         if (Schema::hasColumn('person_events', 'attr')) {
18
-            Schema::table('person_events', function (Blueprint $table) {
18
+            Schema::table('person_events', function(Blueprint $table) {
19 19
                 $table->text('attr')->nullable()->change();
20 20
             });
21 21
         }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function down()
30 30
     {
31 31
         //
32
-        Schema::table('person_events', function (Blueprint $table) {
32
+        Schema::table('person_events', function(Blueprint $table) {
33 33
             $table->text('attr')->nullable(false)->change();
34 34
         });
35 35
     }
Please login to merge, or discard this patch.
src/migrations/2020_06_11_173643_update_add_columns_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         //
17
-        Schema::table('people', function (Blueprint $table) {
17
+        Schema::table('people', function(Blueprint $table) {
18 18
             $table->string('chan')->nullable();
19 19
             $table->string('rin')->nullable();
20 20
             $table->string('resn')->nullable();
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function down()
33 33
     {
34 34
         //
35
-        Schema::table('people', function (Blueprint $table) {
35
+        Schema::table('people', function(Blueprint $table) {
36 36
             $table->dropColumn('chan');
37 37
             $table->dropColumn('rin');
38 38
             $table->dropColumn('resn');
Please login to merge, or discard this patch.