Test Setup Failed
Branch master (a5899c)
by Curtis
13:03
created
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.
src/migrations/2020_06_01_112223_create_persons_events_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_events', function (Blueprint $table) {
16
+        Schema::create('person_events', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('converted_date')->nullable();
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
src/migrations/2020_04_10_154637_create_citations_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('citations', function (Blueprint $table) {
16
+        Schema::create('citations', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->text('description');
Please login to merge, or discard this patch.
migrations/2020_06_11_152802_update_description_default_places_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
     {
16 16
         //
17 17
         if (Schema::hasColumn('places', 'description')) {
18
-            Schema::table('places', function (Blueprint $table) {
18
+            Schema::table('places', function(Blueprint $table) {
19 19
                 $table->dropColumn('description');
20 20
             });
21 21
         }
22
-        Schema::table('places', function (Blueprint $table) {
22
+        Schema::table('places', function(Blueprint $table) {
23 23
             $table->text('description')->nullable()->after('date');
24 24
         });
25 25
     }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function down()
33 33
     {
34 34
         //
35
-        Schema::table('places', function (Blueprint $table) {
35
+        Schema::table('places', function(Blueprint $table) {
36 36
             $table->dropColumn('description');
37 37
         });
38 38
     }
Please login to merge, or discard this patch.
src/migrations/2020_04_10_155019_create_notes_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('notes', function (Blueprint $table) {
16
+        Schema::create('notes', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name')->nullable();
19 19
             $table->text('description')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_01_112242_create_family_events_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('family_events', function (Blueprint $table) {
16
+        Schema::create('family_events', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('family_id')->references('id')->on('families');
19 19
             $table->integer('places_id')->references('id')->on('places')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_06_24_093608_create_person_asso_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_asso', function (Blueprint $table) {
16
+        Schema::create('person_asso', 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_103355_create_refn_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('refn', function (Blueprint $table) {
16
+        Schema::create('refn', 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.