Files
omnivore/packages/db/migrations/0040.undo.create_link_share_info_table.sql
2022-02-11 09:24:33 -08:00

10 lines
229 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: create_link_share_info_table
-- Description: Create the link_share_info table which is used for customizing the title and description of a shared link
BEGIN;
DROP TABLE omnivore.link_share_info;
COMMIT;