且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Laravel 5.1迁移和播种无法截断外键约束中引用的表

更新时间:2022-06-15 08:55:42

如错误所示,您不能截断外键引用的表.删除应该可以...

As the error says, you can not truncate tables referenced by foreign keys. Delete should work though...

DB::table('some_table')->delete();