10 lines
206 B
PL/PgSQL
Executable File
10 lines
206 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: create_content_display_report
|
|
-- Description: Create a new table for the user reports of content display issues
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.content_display_report CASCADE ;
|
|
|
|
COMMIT;
|