@cwebber Someone had deposited $500k into their Simple account. And the transactions table's amount column was a Postgres integer, which is 32-bit signed. We only stored positive numbers, so the max value for a single transaction's amount was 2147483647. But because of centicents, that worked out to $214,748.3647.
Oops.