Files
nairobi/db/migrate/20150819203410_add_phone_to_users.rb
2015-08-28 00:02:01 +02:00

6 lines
110 B
Ruby

class AddPhoneToUsers < ActiveRecord::Migration
def change
add_column :users, :phone, :string
end
end