10 lines
187 B
PL/PgSQL
Executable File
10 lines
187 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: library_item_subscriptions
|
|
-- Description: Create a join table for library item and subscriptions
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.library_item_subscriptions;
|
|
|
|
COMMIT;
|