Skip to content

Commit

Permalink
cast not needed for amount
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-joemarkiewicz committed Jun 23, 2021
1 parent 9641623 commit a3f3e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/stg_quickbooks__bill_line.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ final as (
cast(item_expense_item_id as {{ dbt_utils.type_int() }}) as item_expense_item_id,
cast(item_expense_customer_id as {{ dbt_utils.type_int() }}) as item_expense_customer_id,
item_expense_billable_status,
cast(amount as {{ dbt_utils.type_numeric() }}) as amount,
amount,
description
from fields
)
Expand Down

0 comments on commit a3f3e6b

Please sign in to comment.