mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
清理文件时删除悬空记录
This commit is contained in:
parent
52f379eb05
commit
e640847819
@ -82,6 +82,7 @@ class File extends Controller
|
|||||||
$db1 = SystemFile::mk()->fieldRaw('max(id) id')->where($map)->group('type,xkey');
|
$db1 = SystemFile::mk()->fieldRaw('max(id) id')->where($map)->group('type,xkey');
|
||||||
$db2 = $this->app->db->table($db1->buildSql())->alias('dt')->field('id');
|
$db2 = $this->app->db->table($db1->buildSql())->alias('dt')->field('id');
|
||||||
SystemFile::mk()->whereRaw("id not in {$db2->buildSql()}")->delete();
|
SystemFile::mk()->whereRaw("id not in {$db2->buildSql()}")->delete();
|
||||||
|
SystemFile::mk()->where($map)->where(['status' => 1])->delete();
|
||||||
$this->success('清理重复文件成功!');
|
$this->success('清理重复文件成功!');
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user