Answers for "laravel drop foreign key before removing table?"

PHP
3

larael drop foreign key

Schema::table('posts', function (Blueprint $table) {
	$table->dropForeign(['category_id']);
});
Posted by: Guest on May-07-2021
0

table drop foreign php laravel

public function down()
 {
   Schema::table('tarefas', function (Blueprint $table) {
     $table->dropForeign('tarefas_user_id_foreign');

     $table->dropColumn('user_id');
   });
 }
Posted by: Guest on October-02-2021

Code answers related to "laravel drop foreign key before removing table?"

Browse Popular Code Answers by Language