Fix missing table name in migration and fix flight tests

This commit is contained in:
Nabeel Shahzad
2017-12-12 06:48:04 -06:00
parent a8fafbbee9
commit 2e1c0a75d4
6 changed files with 13 additions and 63 deletions

View File

@@ -79,6 +79,6 @@ class CreateSettingsTable extends Migration
*/
public function down()
{
Schema::drop($this->tablename);
Schema::drop('settings');
}
}