Passed
Push — master ( 19b0da...5ea289 )
by Karel
07:14
created
database/migrations/2030_00_00_000000_add_redirect_field_to_roles_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         if (!Schema::hasColumn('roles', 'redirect')) {
17
-            Schema::table('roles', function (Blueprint $table) {
17
+            Schema::table('roles', function(Blueprint $table) {
18 18
                 $table->string('redirect')->default('dashboard')->after('guard_name');
19 19
             });
20 20
         }
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function down()
29 29
     {
30
-        Schema::table('roles', function (Blueprint $table) {
30
+        Schema::table('roles', function(Blueprint $table) {
31 31
             $table->dropColumn('redirect');
32 32
         });
33 33
     }
Please login to merge, or discard this patch.