9 lines
179 B
PL/PgSQL
9 lines
179 B
PL/PgSQL
-- Guarded rollback for migration 007.
|
|
-- Removing the view does not delete stored facts or report versions.
|
|
|
|
BEGIN;
|
|
|
|
DROP VIEW IF EXISTS finance.v_report_channel_facts;
|
|
|
|
COMMIT;
|