12 lines
223 B
PL/PgSQL
Executable File
12 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;
|