Passed
Push — master ( 5d9325...8a350f )
by Curtis
11:22
created
src/migrations/2020_04_24_211718_create_authors_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('authors', function (Blueprint $table) {
16
+        Schema::create('authors', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->string('description');
Please login to merge, or discard this patch.
src/migrations/2020_04_24_211852_create_publications_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('publications', function (Blueprint $table) {
16
+        Schema::create('publications', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->string('description');
Please login to merge, or discard this patch.
src/migrations/2021_05_28_121021_add_index_key_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
         if (Schema::hasTable('people')) {
17
-            Schema::table('people', function (Blueprint $table) {
17
+            Schema::table('people', function(Blueprint $table) {
18 18
                 if (Schema::hasColumn('people', 'uid')) {
19 19
                     $table->index(['id', 'uid']);
20 20
                 }
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function down()
31 31
     {
32 32
         if (Schema::hasTable('people')) {
33
-            Schema::table('people', function (Blueprint $table) {
33
+            Schema::table('people', function(Blueprint $table) {
34 34
                 if (Schema::hasColumn('people', 'uid')) {
35 35
                     $table->dropIndex(['id', 'uid']);
36 36
                 }
Please login to merge, or discard this patch.
src/migrations/2020_08_30_035717_create_media_objects_file_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('media_objects_file', function (Blueprint $table) {
16
+        Schema::create('media_objects_file', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('form')->nullable();
19 19
             $table->string('medi')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_23_031852_create_importjobs_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('importjobs', function (Blueprint $table) {
16
+        Schema::create('importjobs', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->unsignedBigInteger('user_id')->nullable();
19 19
             $table->string('slug')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_13_003901_create_media_objects_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('media_objects', function (Blueprint $table) {
16
+        Schema::create('media_objects', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->integer('gid')->nullable();
19 19
             $table->string('group')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_25_052028_create_addrs_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('addrs', function (Blueprint $table) {
16
+        Schema::create('addrs', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('adr1')->nullable();
19 19
             $table->string('adr2')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_24_135407_create_chans_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('chans', function (Blueprint $table) {
16
+        Schema::create('chans', 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_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.