Fix broken migration rollbacks

This commit is contained in:
Dane Everitt 2018-03-04 15:21:54 -06:00
parent 36837df0a6
commit 89db9390df
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 7 additions and 8 deletions

View file

@ -23,10 +23,6 @@ class DeleteTaskWhenParentServerIsDeleted extends Migration
*/
public function down()
{
Schema::table('tasks', function (Blueprint $table) {
$table->dropForeign(['server_id']);
$table->foreign('server_id')->references('id')->on('servers');
});
//
}
}