@@ -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(); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Rector\Set\ValueObject\SetList; |
8 | 8 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
9 | 9 | |
10 | -return static function (ContainerConfigurator $containerConfigurator): void { |
|
10 | +return static function(ContainerConfigurator $containerConfigurator): void { |
|
11 | 11 | $containerConfigurator->import(SetList::PHP_80); |
12 | 12 | // get parameters |
13 | 13 | $parameters = $containerConfigurator->parameters(); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | 'group' => $this->faker->word(), 'gid' => $this->faker->randomElement('1', '2'), |
26 | 26 | 'type' => $this->faker->word(), 'name' => $this->faker->name(), |
27 | 27 | 'npfx' => $this->faker->word(), 'givn' => $this->faker->firstName(), |
28 | - 'nick' => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(), 'nsfx', 'created_at', 'updated_at', |
|
28 | + 'nick' => $this->faker->userName(), 'spfx', 'surn' => $this->faker->lastName(), 'nsfx', 'created_at', 'updated_at', |
|
29 | 29 | ]; |
30 | 30 | } |
31 | 31 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::table('families', function (Blueprint $table) { |
|
16 | + Schema::table('families', function(Blueprint $table) { |
|
17 | 17 | $table->string('husband_id')->nullable()->change(); |
18 | 18 | $table->string('wife_id')->nullable()->change(); |
19 | 19 | }); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function down() |
28 | 28 | { |
29 | - Schema::table('families', function (Blueprint $table) { |
|
29 | + Schema::table('families', function(Blueprint $table) { |
|
30 | 30 | $table->integer('husband_id')->nullable()->change(); |
31 | 31 | $table->integer('wife_id')->nullable()->change(); |
32 | 32 | }); |