Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where can I find a list of data types that can be used in rails 3? (such as text, string, integer, float, date, etc.?) I keep randomly learning about new ones, but I'd love to have a list I could easily refer to.

share|improve this question

6 Answers

up vote 116 down vote accepted

Here are all the Rails3 (ActiveRecord migration) datatypes:

:binary
:boolean
:date
:datetime
:decimal
:float
:integer
:primary_key
:references
:string
:text
:time
:timestamp

Source: http://guides.rubyonrails.org/migrations.html#supported-types

share|improve this answer
2  
and :references for polymorphic associations. See: api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/… – Ethan Jan 25 '12 at 8:46
Thanks @Ethan, fixed! – Nicolas Raoul Jan 26 '12 at 8:16
Do you have a source for this? – Dogweather Sep 23 '12 at 22:31
@Dogweather: Added source :-) – Nicolas Raoul Sep 24 '12 at 7:04

Do you mean for defining active record migrations? or do you mean Ruby data types?

Here's a link that may help for creating migrations:

http://www.orthogonalthought.com/blog/index.php/2007/06/mysql-and-ruby-on-rails-datatypes/

share|improve this answer
perfect thanks! – Elliot Jan 13 '11 at 20:55
The link is now dead :-( – Julian May 1 '11 at 11:55
The link's fine now! – sscirrus May 15 '11 at 4:34

It might be helpful to know generally what these data types are used for:

  • binary - is for storing data such as images, audio, or movies.
  • boolean - is for storing true or false values.
  • date - store only the date
  • datetime - store the date and time into a column.
  • decimal - is for decimals.
  • float - is for decimals. (What's the difference between decimal and float?)
  • integer - is for whole numbers.
  • primary_key - unique key that can uniquely identify each row in a table
  • string - is for small data types such as a title. (Should you choose string or text?)
  • text - is for longer pieces of textual data, such as a paragraph of information.
  • time - is for time only
  • timestamp - for storing date and time into a column.

I hope that helps someone! Also, here's the official list: http://guides.rubyonrails.org/migrations.html#supported-types

share|improve this answer

It is important to know not only the types but the mapping of this types to the database type, too:

enter image description here

enter image description here

For, example, note that in MS SQL Server we are using:

  1. the old "datetime" instead "datetime2"
  2. decimal with its default precision
  3. text and varchar instead nvarchar
  4. int (not possible to use tiny int/small int/big int)
  5. image instead BLOB
share|improve this answer

A helpful cheat-sheet useful when creating migrations, with info. on all AR datatypes available and their mapping for diff. Databases etc. :

http://cheat.errtheblog.com/s/migrations/

share|improve this answer
Dead link; I poked around a little bit but didn't see what the new link should be. – Dave Newton Feb 14 at 23:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.