laravel migration best way to add foreign key

后端 未结 10 1097
梦毁少年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:10

    Schema::table('posts', function (Blueprint $table) {
        $table->unsignedInteger('user_id');
    
        $table->foreign('user_id')->references('id')->on('users');
    });
    

提交回复
热议问题