@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | return; |
12 | 12 | } |
13 | 13 | |
14 | - Schema::table('cache_invalidation_events', function (Blueprint $table) { |
|
14 | + Schema::table('cache_invalidation_events', function(Blueprint $table) { |
|
15 | 15 | $table->char('batch_ID', 36)->nullable()->after('id'); |
16 | 16 | }); |
17 | 17 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | if (!Schema::hasColumn('cache_invalidation_events', 'batch_ID')) { |
25 | 25 | return; |
26 | 26 | } |
27 | - Schema::table('cache_invalidation_events', function (Blueprint $table) { |
|
27 | + Schema::table('cache_invalidation_events', function(Blueprint $table) { |
|
28 | 28 | $table->dropColumn('batch_ID'); |
29 | 29 | }); |
30 | 30 | } |