Answers for "php how to delete foreign key constraint sql query laravel"

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
0

laravel migration drop foreign keys

$table->dropPrimary('users_id_primary');
Posted by: Guest on November-30-2020

Code answers related to "php how to delete foreign key constraint sql query laravel"

Browse Popular Code Answers by Language