Khóa ngoại nên đã có trong cơ sở dữ liệu, do đó tôi khuyên bạn nên thực hiện hai bước. Ngoài ra, tôi khuyên bạn nên tạo cột user_id
không dấu:
public function up()
{
Schema::table('posts', function(Blueprint $table)
{
$table->integer('user_id')->after('id')->nullable()->unsigned();
});
Schema::table('posts', function(Blueprint $table)
{
$table->foreign('user_id')->references('id')->on('users');
});
}