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:
Sean Rose 2024-10-31 14:05:02 -07:00 коммит произвёл GitHub
Родитель 70b794b434
Коммит 10f15c4fa4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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