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モデルを持っています。
男子か女子か選べるようにしてほしい。表でこれを行うにはどうすればよいですか?ブール値で?
また、各学生に住宅予算を指定してもらいたいのですが、予算は「整数型」、「浮動小数点型」、「小数型」のいずれである必要がありますか?