You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Since dbt requires unique model names, our models are named by the convention models/schema/schema__table.sql. When running generate properties, the models are picked up by the wrong names, e.g.
Model locations.locations__county not materialized, did you execute dbt run?.
Model locations.locations__state not materialized, did you execute dbt run?.
Where the models are actually named
locations.state
locations.county
Describe the solution you'd like
Allow for custom model naming conventions so that model names do not have to equal table names.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Since dbt requires unique model names, our models are named by the convention
models/schema/schema__table.sql
. When runninggenerate properties
, the models are picked up by the wrong names, e.g.Where the models are actually named
Describe the solution you'd like
Allow for custom model naming conventions so that model names do not have to equal table names.
The text was updated successfully, but these errors were encountered: