mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-09 14:57:51 +00:00
Fixed the AddActivityIndexes
migration's down()
method
This commit is contained in:
parent
a6c20c321f
commit
4b0d1ddf39
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@ class AddActivityIndexes extends Migration
|
|||
public function down()
|
||||
{
|
||||
Schema::table('activities', function(Blueprint $table) {
|
||||
$table->dropIndex('key');
|
||||
$table->dropIndex('created_at');
|
||||
$table->dropIndex('activities_key_index');
|
||||
$table->dropIndex('activities_created_at_index');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue