We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm synchronizing to RDS.
In the invoices__line_item_taxes table, the tax_rate column is stored as a bigint.
invoices__line_item_taxes
tax_rate
bigint
This means that tax rates are truncated to the nearest whole percent (eg: Quebec QST is truncated from 9.975 to 9).
9.975
9
The text was updated successfully, but these errors were encountered:
PR here: #80
Note: I'm not sure what happens to existing tables when you change the type of a column.
Sorry, something went wrong.
No branches or pull requests
I'm synchronizing to RDS.
In the
invoices__line_item_taxes
table, thetax_rate
column is stored as abigint
.This means that tax rates are truncated to the nearest whole percent (eg: Quebec QST is truncated from
9.975
to9
).The text was updated successfully, but these errors were encountered: