Completed
Pull Request — master (#85)
by Luke
02:34
created
database/migrations/2000_01_1_195953_add_cart_session_id_to_users_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     public function up()
14 14
     {
15 15
         if (!(Schema::hasColumn('users', 'cart_session_id'))) {
16
-            Schema::table('users', function (Blueprint $table) {
16
+            Schema::table('users', function(Blueprint $table) {
17 17
                 $table->string('cart_session_id')->default(null);
18 18
             });
19 19
         }
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function down()
28 28
     {
29 29
         if ((Schema::hasColumn('users', 'cart_session_id'))) {
30
-            Schema::table('users', function (Blueprint $table) {
30
+            Schema::table('users', function(Blueprint $table) {
31 31
                 $table->dropColumn('cart_session_id');
32 32
             });
33 33
         }
Please login to merge, or discard this patch.