Passed
Push — main ( 361489...5bf64a )
by
unknown
03:13
created
migrations/2025_06_04_400978_add_column_to_cache_invalidation_events.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.