diff --git a/laravel/database/schema/grammars/mysql.php b/laravel/database/schema/grammars/mysql.php index 12059843..5d783cee 100644 --- a/laravel/database/schema/grammars/mysql.php +++ b/laravel/database/schema/grammars/mysql.php @@ -301,7 +301,7 @@ class MySQL extends Grammar { */ public function drop_foreign(Table $table, Fluent $command) { - return $this->drop_constraint($table, $command); + return "ALTER TABLE ".$this->wrap($table)." DROP FOREIGN KEY ".$command->name; } /**