Dan Brown

Fixed missing column drop on migration rollback

...@@ -97,6 +97,7 @@ class CreateJointPermissionsTable extends Migration ...@@ -97,6 +97,7 @@ class CreateJointPermissionsTable extends Migration
97 97
98 Schema::table('roles', function (Blueprint $table) { 98 Schema::table('roles', function (Blueprint $table) {
99 $table->dropColumn('system_name'); 99 $table->dropColumn('system_name');
100 + $table->dropColumn('hidden');
100 }); 101 });
101 } 102 }
102 } 103 }
......