forked from fivetran/dbt_recurly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
32 lines (32 loc) · 1.66 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
config-version: 2
name: 'recurly'
version: '0.1.0'
require-dbt-version: [">=1.0.0", "<2.0.0"]
models:
recurly:
+schema: recurly
+materialized: table
intermediate:
+materialized: ephemeral
vars:
recurly:
account_balance_history: "{{ ref('stg_recurly__account_balance_history') }}"
account_history: "{{ ref('stg_recurly__account_history') }}"
account_note_history: "{{ ref('stg_recurly__account_note_history') }}"
billing_info_history: "{{ ref('stg_recurly__billing_info_history') }}"
coupon_discount: "{{ ref('stg_recurly__coupon_discount') }}"
coupon_redemption_history: "{{ ref('stg_recurly__coupon_redemption_history') }}"
credit_payment_history: "{{ ref('stg_recurly__credit_payment_history') }}"
invoice_coupon_redemption_history: "{{ ref('stg_recurly__invoice_coupon_redemption_history') }}"
invoice_history: "{{ ref('stg_recurly__invoice_history') }}"
invoice_subscription_history: "{{ ref('stg_recurly__invoice_subscription_history') }}"
line_item_history: "{{ ref('stg_recurly__line_item_history') }}"
plan_currency_history: "{{ ref('stg_recurly__plan_currency_history') }}"
plan_history: "{{ ref('stg_recurly__plan_history') }}"
subscription_add_on_history: "{{ ref('stg_recurly__subscription_add_on_history') }}"
subscription_change_history: "{{ ref('stg_recurly__subscription_change_history') }}"
subscription_history: "{{ ref('stg_recurly__subscription_history') }}"
transaction_subscription: "{{ ref('stg_recurly__transaction_subscription') }}"
transaction: "{{ ref('stg_recurly__transaction') }}"
recurly_account_pass_through_columns: []
recurly_subscription_pass_through_columns: []