6 lines
316 B
SQL
6 lines
316 B
SQL
-- Retire the Ofsted Parent View feature (schema v6).
|
|||
|
|
-- The marts schema is dbt-owned; deleting the dbt model stops the table being
|
||
|
|
-- rebuilt but does not drop the existing relation, so apply this directly
|
||
|
|
-- against the staging and production marts databases.
|
||
|
|
DROP TABLE IF EXISTS marts.fact_parent_view CASCADE;
|