Answers for "eloquent drop foreign column"

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

Code answers related to "eloquent drop foreign column"

Browse Popular Code Answers by Language