Change Stripe tax transaction exchange rate to BIGNUMERIC type. (#6428)
Some historical Stripe tax transactions contain exchange rates with 16 digits after the decimal, which exceeds the normal NUMERIC type's maximum scale of 9 digits after the decimal.
This commit is contained in:
Родитель
70b794b434
Коммит
10f15c4fa4
|
@ -133,7 +133,7 @@
|
|||
},
|
||||
{
|
||||
"name": "filing_exchange_rate",
|
||||
"type": "NUMERIC"
|
||||
"type": "BIGNUMERIC"
|
||||
},
|
||||
{
|
||||
"name": "filing_total",
|
||||
|
|
|
@ -100,7 +100,7 @@ fields:
|
|||
type: STRING
|
||||
mode: NULLABLE
|
||||
- name: filing_exchange_rate
|
||||
type: NUMERIC
|
||||
type: BIGNUMERIC
|
||||
mode: NULLABLE
|
||||
- name: filing_total
|
||||
type: NUMERIC
|
||||
|
|
Загрузка…
Ссылка в новой задаче