mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
223 B
PL/PgSQL
Executable file
11 lines
223 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;
|
|
|
|
COMMIT;
|