I am getting PGError: ERROR: integer out of range
message from trying to insert the following integer: 100001389928198.
According to the Postgres docs on numeric datatypes the limit is much higher (9223372036854775807). I have a feeling Heroku is treating the column as a regular integer rather than a BIGINT.
I defined the migration as a BIGINT as such:
t.column :uid, :bigint
is this not correct in terms of Heroku migrations?