diff --git a/dbt_project.yml b/dbt_project.yml index e33c20d..37f9639 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -3,7 +3,7 @@ # and underscores. A good package name should reflect your organization's # name or the intended use of these models name: 'dbtplyr' -version: '0.3.0' +version: '0.3.1' config-version: 2 require-dbt-version: ">=1.0.0" @@ -13,10 +13,10 @@ profile: 'dbtplyr' # These configurations specify where dbt should look for different types of files. # The `source-paths` config, for example, states that models in this project can be # found in the "models/" directory. You probably won't need to change these! -source-paths: ["models"] +model-paths: ["models"] analysis-paths: ["analysis"] test-paths: ["tests"] -data-paths: ["data"] +seed-paths: ["data"] macro-paths: ["macros"] snapshot-paths: ["snapshots"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 69e6d11..9a92757 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -7,10 +7,10 @@ profile: 'dbtplyr' config-version: 2 -source-paths: ["models"] +model-paths: ["models"] analysis-paths: ["analysis"] test-paths: ["tests"] -data-paths: ["data"] +seed-paths: ["data"] macro-paths: ["macros"] target-path: "target" # directory which will store compiled SQL files @@ -19,4 +19,4 @@ clean-targets: # directories to be removed by `dbt clean` - "dbt_modules" seeds: - +quote_columns: true \ No newline at end of file + +quote_columns: true