Say that I want to drop the ajs
schema as a clean up activity on our dev db, not as part of a regular dbt
workflow
dbt run-operation drop_schema --args '{relation: ajs}'
perhaps I need to wrap drop_schema
into another macro drop_schema_str(schema_str)
where schema_str
is the string of the schema and it is used to make a Relation
object before invoking drop_schema()
?