-
Notifications
You must be signed in to change notification settings - Fork 34
/
dbt_project.yml
32 lines (31 loc) · 1.2 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: 'stripe'
version: '0.15.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
stripe:
+schema: stripe
+materialized: table
intermediate:
+materialized: table
vars:
stripe:
account: "{{ ref('stg_stripe__account') }}"
balance_transaction: "{{ ref('stg_stripe__balance_transaction') }}"
card: "{{ ref('stg_stripe__card') }}"
charge: "{{ ref('stg_stripe__charge') }}"
customer: "{{ ref('stg_stripe__customer') }}"
dispute: "{{ ref('stg_stripe__dispute') }}"
discount: "{{ ref('stg_stripe__discount') }}"
fee: "{{ ref('stg_stripe__fee') }}"
invoice: "{{ ref('stg_stripe__invoice') }}"
invoice_line_item: "{{ ref('stg_stripe__invoice_line_item') }}"
payment_intent: "{{ ref('stg_stripe__payment_intent') }}"
payment_method_card: "{{ ref('stg_stripe__payment_method_card') }}"
payment_method: "{{ ref('stg_stripe__payment_method') }}"
payout: "{{ ref('stg_stripe__payout') }}"
price_plan: "{{ ref('stg_stripe__price_plan') }}"
product: "{{ ref('stg_stripe__product') }}"
refund: "{{ ref('stg_stripe__refund') }}"
subscription: "{{ ref('stg_stripe__subscription') }}"
transfer: "{{ ref('stg_stripe__transfer') }}"