Merge pull request #2268 from gertjankrol/master
Fix the `AddActivityIndexes` migration's `down()` method
This commit is contained in:
commit
49fa21c1e2
|
@ -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…
Reference in New Issue