@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | { |
9 | 9 | public function up(): void |
10 | 10 | { |
11 | - Schema::table('temp_tags', function (Blueprint $table) { |
|
11 | + Schema::table('temp_tags', function(Blueprint $table) { |
|
12 | 12 | $table->json('payload')->nullable(); |
13 | 13 | }); |
14 | - Schema::table('temp_tags', function (Blueprint $table) { |
|
14 | + Schema::table('temp_tags', function(Blueprint $table) { |
|
15 | 15 | $table->dropColumn('note'); |
16 | 16 | }); |
17 | 17 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function down(): void |
25 | 25 | { |
26 | - Schema::table('temp_tags', function (Blueprint $table) { |
|
26 | + Schema::table('temp_tags', function(Blueprint $table) { |
|
27 | 27 | $table->dropColumn('payload'); |
28 | 28 | }); |
29 | 29 | } |