0
所以,我是初學者,當我學習的遷移,現在我寫遷移如下:的ActiveRecord的數據類型
create_table :users do |t|
t.string :uid
t.string :pwd
t.string :email
t.string :qq
t.integer :integral
t.timestamps
end
但現在我想添加一個boolean
提起,我不知道在哪裏可以找到提交的類型,就像t.string
。我在官方文檔中沒有找到。
所以誰可以告訴我在哪裏可以找到ActiveRecord的所有字段類型,謝謝。
http://stackoverflow.com/questions/11889048/is-there-documentation-for-the-rails-column-types – tihom