class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string :name t.string :email t.boolean :single t.date :dob t.timestamps end end end