Skip to content

Commit

Permalink
Merge pull request #5 from graze/adding-new-json-config
Browse files Browse the repository at this point in the history
adding json
  • Loading branch information
AaronHagan4 authored Nov 9, 2023
2 parents 44bc31c + 5c87307 commit 404aa2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion macros/get_order_line_columns.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{"name": "pre_tax_price", "datatype": dbt.type_float()},
{"name": "pre_tax_price_set", "datatype": dbt.type_string()},
{"name": "price", "datatype": dbt.type_float()},
{"name": "price_set", "datatype": dbt.type_string()},
{"name": "price_set", "datatype": "json"},
{"name": "product_id", "datatype": dbt.type_numeric()},
{"name": "quantity", "datatype": dbt.type_numeric()},
{"name": "requires_shipping", "datatype": "boolean"},
Expand Down
2 changes: 1 addition & 1 deletion macros/get_tax_line_columns.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{"name": "index", "datatype": dbt.type_int()},
{"name": "order_line_id", "datatype": dbt.type_int()},
{"name": "price", "datatype": dbt.type_float()},
{"name": "price_set", "datatype": dbt.type_string()},
{"name": "price_set", "datatype": "json"},
{"name": "rate", "datatype": dbt.type_float()},
{"name": "title", "datatype": dbt.type_string()}
] %}
Expand Down

0 comments on commit 404aa2a

Please sign in to comment.