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

@ -36,8 +36,8 @@ class UpgradeTaskSystem extends Migration
public function down()
{
Schema::table('tasks', function (Blueprint $table) {
$table->dropForeign(['server_id']);
$table->dropForeign(['user_id']);
// $table->dropForeign(['server_id']);
// $table->dropForeign(['user_id']);
$table->renameColumn('server_id', 'server');
$table->dropColumn('user_id');