20 lines
315 B
PL/PgSQL
Executable File
20 lines
315 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: library_item
|
|
-- Description: Create library_item table
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER update_library_item_modtime ON omnivore.library_item;
|
|
|
|
DROP TABLE omnivore.library_item;
|
|
|
|
DROP TYPE library_item_type;
|
|
|
|
DROP TYPE content_reader_type;
|
|
|
|
DROP TYPE library_item_state;
|
|
|
|
DROP EXTENSION vector;
|
|
|
|
COMMIT;
|