Test Failed
Push — master ( 0d0443...af4c80 )
by Johnny
04:18 queued 20s
created
database/migrations/2017_03_20_230022_add_activation_flag_to_user_table.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('users', function (Blueprint $table) {
16
+        Schema::table('users', function(Blueprint $table) {
17 17
             $table->integer('activated')->default(0);
18 18
         });
19 19
 
20
-        Schema::table('users', function (Blueprint $table) {
20
+        Schema::table('users', function(Blueprint $table) {
21 21
             $table->string('email_token')->nullable();
22 22
         });
23 23
     }
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function down()
31 31
     {
32
-        Schema::table('users', function (Blueprint $table) {
32
+        Schema::table('users', function(Blueprint $table) {
33 33
             $table->dropColumn('activated');
34 34
         });
35 35
 
36
-        Schema::table('users', function (Blueprint $table) {
36
+        Schema::table('users', function(Blueprint $table) {
37 37
             $table->dropColumn('email_token');
38 38
         });
39 39
     }
Please login to merge, or discard this patch.