0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-22 11:52:30 +00:00

Fixed missing column drop on migration rollback

This commit is contained in:
Dan Brown 2016-05-22 14:56:26 +01:00
parent bd00a03e7b
commit 9d3f329bc9

View file

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