10 lines
146 B
PL/PgSQL
Executable File
10 lines
146 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: create_admin_user_table
|
|
-- Description: Add a new table for admin users
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.admin_users;
|
|
|
|
COMMIT;
|