-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
116d4d2
commit cf7d57c
Showing
2 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
{#-- create a table name using the right configurations -- #} | ||
-- 2023.05.08 AP. Work in progress model to help the creation of connector tables. Might Be changed later | ||
|
||
select 1 | ||
|
||
{# | ||
-- create a table name using the right configurations -- | ||
{{ config(alias= var('connector_table_name') )}} | ||
|
||
{#-- create a new table normalizing "airbyte_raw" JSON data into a specific table --#} | ||
{#-- table name should be overridden when the model is called, by setting the 'vars' project variables --#} | ||
{{normalize_onadata_form(schema_name = var('connector_schema_name'), form_name = '_airbyte_raw_' + var('connector_table_name') )}} | ||
-- create a new table normalizing "airbyte_raw" JSON data into a specific table -- | ||
-- table name should be overridden when the model is called, by setting the 'vars' project variables -- | ||
{{normalize_onadata_form(schema_name = var('connector_schema_name'), form_name = '_airbyte_raw_' + var('connector_table_name') )}} | ||
|
||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
packages: | ||
- package: dbt-labs/dbt_utils | ||
version: 0.9.6 | ||
version: 1.0.0 |