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

11 lines
201 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: create_abuse_report_table
-- Description: Create a new table for saving abuse reports
BEGIN;
DROP TYPE report_type CASCADE;
DROP TABLE omnivore.abuse_reports CASCADE;
COMMIT;