@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::table('people', function (Blueprint $table) { |
|
| 16 | + Schema::table('people', function(Blueprint $table) { |
|
| 17 | 17 | $table->unique('uid'); |
| 18 | 18 | }); |
| 19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function down() |
| 27 | 27 | { |
| 28 | - Schema::table('people', function (Blueprint $table) { |
|
| 28 | + Schema::table('people', function(Blueprint $table) { |
|
| 29 | 29 | $table->dropUnique('uid'); |
| 30 | 30 | }); |
| 31 | 31 | } |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::table('people', function (Blueprint $table) { |
|
| 16 | + Schema::table('people', function(Blueprint $table) { |
|
| 17 | 17 | $table->dateTime('chan')->nullable()->after('deleted_at'); |
| 18 | 18 | }); |
| 19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function down() |
| 27 | 27 | { |
| 28 | - Schema::table('people', function (Blueprint $table) { |
|
| 28 | + Schema::table('people', function(Blueprint $table) { |
|
| 29 | 29 | $table->dropColumn('chan'); |
| 30 | 30 | }); |
| 31 | 31 | } |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::table('people', function (Blueprint $table) { |
|
| 16 | + Schema::table('people', function(Blueprint $table) { |
|
| 17 | 17 | $table->dropColumn('chan'); |
| 18 | 18 | }); |
| 19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function down() |
| 27 | 27 | { |
| 28 | - Schema::table('people', function (Blueprint $table) { |
|
| 28 | + Schema::table('people', function(Blueprint $table) { |
|
| 29 | 29 | $table->dateTime('chan')->nullable()->after('deleted_at'); |
| 30 | 30 | }); |
| 31 | 31 | } |