mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
217 B
PL/PgSQL
Executable file
11 lines
217 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: create_group_tables
|
|
-- Description: Add tables for groups and group memberships
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.group_membership ;
|
|
DROP TABLE omnivore.invite ;
|
|
DROP TABLE omnivore.group ;
|
|
|
|
COMMIT;
|