Passed
Push — master ( 2d132c...284d4e )
by Curtis
25:03 queued 22:10
created
src/migrations/2020_04_10_155413_create_sources_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('sources', function (Blueprint $table) {
16
+        Schema::create('sources', 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_08_21_124830_create_source_ref_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_ref', function (Blueprint $table) {
16
+        Schema::create('source_ref', 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_11_175726_update_add_columns_family_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('families', function (Blueprint $table) {
17
+        Schema::table('families', function(Blueprint $table) {
18 18
             $table->string('chan')->nullable();
19 19
             $table->string('nchi')->nullable();
20 20
             $table->string('rin')->nullable();
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function down()
30 30
     {
31 31
         //
32
-        Schema::table('families', function (Blueprint $table) {
32
+        Schema::table('families', function(Blueprint $table) {
33 33
             $table->dropColumn('chan');
34 34
             $table->dropColumn('nchi');
35 35
             $table->dropColumn('rin');
Please login to merge, or discard this patch.
src/migrations/2020_06_24_105140_create_person_lds_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_lds', function (Blueprint $table) {
16
+        Schema::create('person_lds', 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_10_13_093608_create_person_desi_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_desi', function (Blueprint $table) {
16
+        Schema::create('person_desi', 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_11_150000_update_add_columns_person_events_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('person_events', function (Blueprint $table) {
17
+        Schema::table('person_events', function(Blueprint $table) {
18 18
             $table->unsignedBigInteger('person_id')->nullable();
19 19
             $table->string('title')->nullable();
20 20
             $table->string('date')->nullable();
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function down()
32 32
     {
33 33
         //
34
-        Schema::table('person_events', function (Blueprint $table) {
34
+        Schema::table('person_events', function(Blueprint $table) {
35 35
             $table->dropColumn('person_id');
36 36
             $table->dropColumn('title');
37 37
             $table->dropColumn('description');
Please login to merge, or discard this patch.
src/migrations/2020_06_24_085159_create_source_data_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('source_data_even', function (Blueprint $table) {
16
+        Schema::create('source_data_even', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('group')->nullable();
19 19
             $table->string('gid')->nullable();
Please login to merge, or discard this patch.
src/migrations/2020_04_10_155307_create_repositories_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('repositories', function (Blueprint $table) {
16
+        Schema::create('repositories', function(Blueprint $table) {
17 17
             $table->increments('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_25_040418_create_family_slgs_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_slgs', function (Blueprint $table) {
16
+        Schema::create('family_slgs', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->integer('family_id')->nullable();
19 19
             $table->string('stat')->nullable();
Please login to merge, or discard this patch.