我有这个迁移文件
Schema::create('table_one', function(Blueprint $table)
{
$table->increments('id');
$table->string('name');
$table->integer('table_two_id')->unsigned();
$table->foreign('table_two_id')->references('id')->on('table_two');
$table->timestamps();
});
我想更新它 ->onDelete(‘cascade’);
$table->foreign('table_two_id')->references('id')->on('table_two')->onDelete('cascade');
做这个的最好方式是什么?
有没有像 ->change(); 这样的东西?
谢谢
原文由 Yevgeniy Afanasyev 发布,翻译遵循 CC BY-SA 4.0 许可协议
删除外键然后再次添加并运行迁移。