@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ |
||
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(); |
@@ -13,7 +13,7 @@ discard block |
||
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->index(['id', 'person_id', 'addr_id']); |
18 | 18 | }); |
19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function down() |
27 | 27 | { |
28 | - Schema::table('person_events', function (Blueprint $table) { |
|
28 | + Schema::table('person_events', function(Blueprint $table) { |
|
29 | 29 | $table->dropIndex(['id', 'person_id', 'addr_id']); |
30 | 30 | }); |
31 | 31 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('person_name', function (Blueprint $table) { |
|
16 | + Schema::create('person_name', 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('subms', function (Blueprint $table) { |
|
16 | + Schema::create('subms', 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_subm', function (Blueprint $table) { |
|
16 | + Schema::create('person_subm', 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('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(); |