diff --git a/README.md b/README.md index b6bc899..46da055 100644 --- a/README.md +++ b/README.md @@ -48,15 +48,15 @@ models: +schema: my_new_schema_name # leave blank for just the target_schema ``` -### Disabling Models +### Enabling Models This package takes into consideration tables that may not be synced due to slowness caused by the Marketo API. By default the `campaign` and `program` models are disabled. If you sync these tables, enable the modeling done by adding the following to your `dbt_project.yml` file: ```yml # dbt_project.yml ... vars: - marketo__enable_campaigns: False #Enable if Fivetran is syncing the campaign table - marketo__enable_programs: False #Enable if Fivetran is syncing the program table + marketo__enable_campaigns: True #Enable if Fivetran is syncing the campaign table + marketo__enable_programs: True #Enable if Fivetran is syncing the program table ``` ## Contributions