10 lines
178 B
PL/PgSQL
Executable File
10 lines
178 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: rename_user_articles_to_links
|
|
-- Description: Rename the user_article table to links
|
|
|
|
BEGIN;
|
|
|
|
AlTER TABLE omnivore.links RENAME TO user_articles;
|
|
|
|
COMMIT;
|