Files
omnivore/packages/db/migrations/0045.undo.create_content_display_report.sql
2022-02-11 09:24:33 -08:00

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;