Simple rails app using Postgres DB, getting 'integer out of range' error when trying to insert 2176968859. Should be an easy fix to the migrations, but I'm not sure. Right now I've got...
create_table :targets do |t| t.integer :tid ...
|
|
Simple rails app using Postgres DB, getting 'integer out of range' error when trying to insert 2176968859. Should be an easy fix to the migrations, but I'm not sure. Right now I've got... create_table :targets do |t| t.integer :tid ...
|
||
|
|
|
|
What's the question? You are overflowing. Use a bigint if you need numbers that big. http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html |
||
|
|
|
Note the range of allowed values for the integer type in http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html. I think you are going to have to use a bigint, decimal, or double precision. |
||
|
|
|
|
PostgreSQL integers are signed, there is no unsigned datatype - I bet that's your problem. If you need larger values, use bigint. If bigint also isn't enough, use numeric - but use bigint rather than numeric unless you need the larger size or decimals, since it's much faster. |
||
|
|