Answers for "drop foreign if exists laravel"

PHP
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

drop foreign key laravel

Schema::table('admins', function (Blueprint $table) {    $table->dropForeign('admins_post_id_foreign');    $table->dropColumn('post_id');});
Posted by: Guest on September-26-2021

Browse Popular Code Answers by Language