外部キーはすでにデータベースにあるはずなので、2つのステップを踏むことをお勧めします。また、列をuser_id
にすることをお勧めします 署名なし:
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');
});
}