Completed
Pull Request — master (#540)
by
unknown
31s
created
src/migrations/2021_12_14_311104_add_cookie_id_to_tracker_log.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         try {
22 22
             $this->builder->table(
23 23
                 $this->table,
24
-                function ($table) {
24
+                function($table) {
25 25
                     $table->bigInteger('cookie_id')->unsigned()->nullable()->index()->after('session_id');
26 26
                 }
27 27
             );
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $this->builder->table(
40 40
             $this->table,
41
-            function ($table) {
41
+            function($table) {
42 42
                 $table->dropColumn('cookie_id');
43 43
             }
44 44
         );
Please login to merge, or discard this patch.