mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
238 B
PL/PgSQL
Executable file
11 lines
238 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: library_item_preview
|
|
-- Description: Create library_item_preview table
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER update_library_item_preview_modtime ON omnivore.library_item_preview;
|
|
|
|
DROP TABLE omnivore.library_item_preview;
|
|
|
|
COMMIT;
|