Reputation: 45943
What is default integer limit in PostrgreSQL database for Rails 3?
That's the question.
Upvotes: 4
Views: 4204
Reputation: 51156
By default, Rails will use PostgreSQL's integer type, which has a range of -2147483648 to +2147483647.
Upvotes: 7