class AddGenreAndDobToUsers < ActiveRecord::Migration[4.2] def change add_column :users, :genre, :string, limit: 10 add_column :users, :date_of_birth, :datetime end end