laravel migration best way to add foreign key

后端 未结 10 1079
梦毁少年i
梦毁少年i 2020-12-09 09:19

Simple question: I\'m new to Laravel. I have this migration file:

Schema::create(\'lists\', function(Blueprint $table) {
    $table->increments(\'id\'); 
         


        
10条回答
  •  眼角桃花
    2020-12-09 10:00

    In Laravel 7 it can be done in one line

    $table->foreignId('user_id')->constrained()->cascadeOnDelete();

提交回复
热议问题