--
-- Table to store files to be deleted by a scheduled sweep.
-- Since binaries are stored in filesystem and attributes in database,
-- need a way to delete both atomically. So any process to delete file-system cr_revisions,
-- copies the file path to this table as part of the delete transaction. Sweep
-- run later to remove the files from filesystem once database info is successfully deleted.
--
CREATE TABLE cr_files_to_delete (
path varchar(250),
storage_area_key varchar(100)
);
-- Table size: 0 bytes
-- Table rows: 0
Tables: