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

What is the default limit in a PostgreSQL database for Rails 3?

This is a question.

+4
source share
1 answer

By default, Rails will use a PostgreSQL integer type that ranges from -2147483648 to +2147483647.

+7
source

All Articles