20140604112510_add_fields_to_user.rb 217 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 # -*- encoding : utf-8 -*- class AddFieldsToUser < ActiveRecord::Migration def change add_column :users, :address, :text add_column :users, :zipcode, :string add_column :users, :phone, :string end end