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