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