mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
13 lines
266 B
PL/PgSQL
Executable file
13 lines
266 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: folder_policy
|
|
-- Description: Create a folder_policy table to contain the folder expiration policies for user and folder
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.folder_policy;
|
|
|
|
DROP TYPE folder_action;
|
|
|
|
DROP PROCEDURE omnivore.expire_folders();
|
|
|
|
COMMIT;
|