-
Notifications
You must be signed in to change notification settings - Fork 41
/
dbt_project.yml
49 lines (48 loc) · 2.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: 'shopify'
version: '0.13.2'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
shopify:
+schema: shopify
+materialized: table
intermediate:
+materialized: ephemeral
int_shopify__customer_email_rollup:
+materialized: view # so we can use the dbt_utils.star macro
vars:
shopify:
shopify_customer: "{{ ref('stg_shopify__customer') }}"
shopify_order: "{{ ref('stg_shopify__order') }}"
shopify_order_line: "{{ ref('stg_shopify__order_line') }}"
shopify_order_line_refund: "{{ ref('stg_shopify__order_line_refund') }}"
shopify_product: "{{ ref('stg_shopify__product') }}"
shopify_product_variant: "{{ ref('stg_shopify__product_variant') }}"
shopify_transaction: "{{ ref('stg_shopify__transaction') }}"
shopify_refund: "{{ ref('stg_shopify__refund') }}"
shopify_order_adjustment: "{{ ref('stg_shopify__order_adjustment') }}"
shopify_abandoned_checkout: "{{ ref('stg_shopify__abandoned_checkout') }}"
shopify_collection_product: "{{ ref('stg_shopify__collection_product') }}"
shopify_collection: "{{ ref('stg_shopify__collection') }}"
shopify_customer_tag: "{{ ref('stg_shopify__customer_tag') }}"
shopify_discount_code: "{{ ref('stg_shopify__discount_code') }}"
shopify_fulfillment: "{{ ref('stg_shopify__fulfillment') }}"
shopify_inventory_item: "{{ ref('stg_shopify__inventory_item') }}"
shopify_inventory_level: "{{ ref('stg_shopify__inventory_level') }}"
shopify_location: "{{ ref('stg_shopify__location') }}"
shopify_metafield: "{{ ref('stg_shopify__metafield') }}"
shopify_order_note_attribute: "{{ ref('stg_shopify__order_note_attribute') }}"
shopify_order_shipping_line: "{{ ref('stg_shopify__order_shipping_line') }}"
shopify_order_shipping_tax_line: "{{ ref('stg_shopify__order_shipping_tax_line') }}"
shopify_order_tag: "{{ ref('stg_shopify__order_tag') }}"
shopify_order_url_tag: "{{ ref('stg_shopify__order_url_tag') }}"
shopify_price_rule: "{{ ref('stg_shopify__price_rule') }}"
shopify_product_image: "{{ ref('stg_shopify__product_image') }}"
shopify_product_tag: "{{ ref('stg_shopify__product_tag') }}"
shopify_shop: "{{ ref('stg_shopify__shop') }}"
shopify_tax_line: "{{ ref('stg_shopify__tax_line') }}"
shopify_tender_transaction: "{{ ref('stg_shopify__tender_transaction') }}"
shopify_abandoned_checkout_discount_code: "{{ ref('stg_shopify__abandoned_checkout_discount_code') }}"
shopify_order_discount_code: "{{ ref('stg_shopify__order_discount_code') }}"
shopify_abandoned_checkout_shipping_line: "{{ ref('stg_shopify__abandoned_checkout_shipping_line') }}"
shopify_fulfillment_event: "{{ ref('stg_shopify__fulfillment_event') }}"