B Seven
B Seven

Reputation: 45943

What is default integer limit in PostrgreSQL database for Rails 3?

What is default integer limit in PostrgreSQL database for Rails 3?

That's the question.

Upvotes: 4

Views: 4204

Answers (1)

Larsenal
Larsenal

Reputation: 51156

By default, Rails will use PostgreSQL's integer type, which has a range of -2147483648 to +2147483647.

Upvotes: 7

Related Questions