我刚刚使用此迁移从表中删除了softDelete:
Schema::table("items", function ($table) {
$table->dropSoftDeletes();
});
Run Code Online (Sandbox Code Playgroud)
但现在每个查询都会产生:
Column not found: 1054 Unknown column 'items.deleted_at' in 'where clause'
Run Code Online (Sandbox Code Playgroud)
代码没有明确引用此列.是否已在某处缓存,如果是,如何清除它?