-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sync node to yaml instead of co-manipulation, decouples mutations
chore: only use get node yaml if needed otherwise stick to node itself
- Loading branch information
Showing
4 changed files
with
212 additions
and
119 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
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
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,40 +1,32 @@ | ||
version: 2 | ||
models: [] | ||
sources: [] | ||
seeds: | ||
- name: raw_customers | ||
columns: | ||
- name: id | ||
data_type: INTEGER | ||
- name: first_name | ||
data_type: VARCHAR | ||
- name: last_name | ||
data_type: VARCHAR | ||
- name: raw_orders | ||
columns: | ||
- name: id | ||
description: '' | ||
data_type: INTEGER | ||
- name: user_id | ||
description: '' | ||
data_type: INTEGER | ||
- name: order_date | ||
description: '' | ||
data_type: DATE | ||
- name: status | ||
description: '{{ doc("orders_status") }}' # putting this in to test if unrendered propogation works | ||
description: '{{ doc("orders_status") }}' | ||
- name: raw_payments | ||
columns: | ||
- name: id | ||
description: '' | ||
data_type: INTEGER | ||
- name: order_id | ||
description: '' | ||
data_type: INTEGER | ||
- name: payment_method | ||
description: '' | ||
data_type: VARCHAR | ||
- name: amount | ||
description: '' | ||
data_type: INTEGER | ||
- name: raw_customers | ||
columns: | ||
- name: id | ||
description: '' | ||
data_type: INTEGER | ||
- name: first_name | ||
description: '' | ||
data_type: VARCHAR | ||
- name: last_name | ||
description: '' | ||
data_type: VARCHAR |
Oops, something went wrong.