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