You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Carl Schwan edited this page Oct 26, 2022
·
2 revisions
List all the trash entries without corresponding oc_filecache entry
SELECT t.*from oc_group_folders_trash as t
LEFT join oc_filecache as f
ONf.path= CONCAT("__groupfolders/trash/", t.folder_id, "/", t.name, ".d", t.deleted_time)
WHEREf.fileid is NULL;