@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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'); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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'); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |