16_remove_deleted_file_objects.up.sql 276 B

1234567891011
  1. DELETE FROM file_object_keys
  2. WHERE file_id NOT IN (
  3. SELECT DISTINCT file_id FROM collection_files
  4. WHERE is_deleted=false
  5. );
  6. DELETE FROM thumbnail_object_keys
  7. WHERE file_id NOT IN (
  8. SELECT DISTINCT file_id FROM collection_files
  9. WHERE is_deleted=false
  10. );