class Createstudents < ActiveRecord::Migration
def change
create_table :students do |t|
t.string :first_name
t.string :last_name
t.string :email
:gender
t.string :number
t.string :college
t.string :password
t.integer :budget
t.string :picture
t.timestamps
end
end
我正在创建一个中国平台,让国际学生可以交换有关住房的信息。我有一个student.rb模型。
我希望学生能够选择男性或女性。我如何在表格中这样做?用布尔值?
我还希望每个学生都指定他们的住房预算,预算是“整数类型”,还是“浮动类型”或“十进制类型”?