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.
|
Here are all the Rails3 (ActiveRecord migration) datatypes: :binary Source: http://guides.rubyonrails.org/migrations.html#supported-types |
|||||||||||
|
|
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/ |
|||
|
It might be helpful to know generally what these data types are used for:
I hope that helps someone! Also, here's the official list: http://guides.rubyonrails.org/migrations.html#supported-types |
||||
|
|
|
It is important to know not only the types but the mapping of this types to the database type, too:
For, example, note that in MS SQL Server we are using:
|
|||
|
|
|
A helpful cheat-sheet useful when creating migrations, with info. on all AR datatypes available and their mapping for diff. Databases etc. : |
|||
|

