Im trying to roll back my migrations.
My migrations file uses foreign keys like so
$table->foreign(\'user_one\')->references(\'id\')->on(\'u
I think this is the most correct approach:
public function down() { Schema::table('[table]', function (Blueprint $table) { $table->dropForeign('[table]_[column]_foreign'); $table->dropColumn('[column]'); }); }