Test Setup Failed
Branch master (a5899c)
by Curtis
13:03
created
src/migrations/2020_04_10_154850_create_families_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('families', function (Blueprint $table) {
16
+        Schema::create('families', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->text('description')->nullable();
19 19
             $table->integer('is_active')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_01_112312_update_events_add_timestamp.php 1 patch
Spacing   +4 added lines, -4 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('person_events', function (Blueprint $table) {
16
+        Schema::table('person_events', function(Blueprint $table) {
17 17
             $table->integer('year')->nullable();
18 18
             $table->integer('month')->nullable();
19 19
             $table->integer('day')->nullable();
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             $table->string('adop_famc')->nullable();
30 30
             $table->string('birt_famc')->nullable();
31 31
         });
32
-        Schema::table('family_events', function (Blueprint $table) {
32
+        Schema::table('family_events', function(Blueprint $table) {
33 33
             $table->integer('year')->nullable();
34 34
             $table->integer('month')->nullable();
35 35
             $table->integer('day')->nullable();
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function down()
54 54
     {
55
-        Schema::table('person_events', function (Blueprint $table) {
55
+        Schema::table('person_events', function(Blueprint $table) {
56 56
             $table->dropColumn('year');
57 57
             $table->dropColumn('month');
58 58
             $table->dropColumn('day');
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             $table->dropColumn('adop_famc');
69 69
             $table->dropColumn('birt_famc');
70 70
         });
71
-        Schema::table('family_events', function (Blueprint $table) {
71
+        Schema::table('family_events', function(Blueprint $table) {
72 72
             $table->dropColumn('year');
73 73
             $table->dropColumn('month');
74 74
             $table->dropColumn('day');
Please login to merge, or discard this patch.
src/migrations/2020_06_12_173700_create_subns_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('subns', function (Blueprint $table) {
16
+        Schema::create('subns', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('subm')->nullable();
19 19
             $table->string('famf')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_24_092055_create_person_alia_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_alia', function (Blueprint $table) {
16
+        Schema::create('person_alia', 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_08_21_111106_create_person_name_romn_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_romn', function (Blueprint $table) {
16
+        Schema::create('person_name_romn', 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_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.