debian-mirror-gitlab/db/migrate/20150320234437_add_location_to_user.rb
2016-06-16 23:09:34 +05:30

7 lines
137 B
Ruby

# rubocop:disable all
class AddLocationToUser < ActiveRecord::Migration
def change
add_column :users, :location, :string
end
end