summaryrefslogtreecommitdiff
path: root/db/migrate/20150320234437_add_location_to_user.rb
blob: df04657036167e68fe4e1d36ae9813b681630011 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLocationToUser < ActiveRecord::Migration
  def change
    add_column :users, :location, :string
  end
end