suitepro/db/migrate/108_add_identity_url_to_users.rb
2018-02-02 22:19:29 +01:00

9 lines
187 B
Ruby

class AddIdentityUrlToUsers < ActiveRecord::Migration
def self.up
add_column :users, :identity_url, :string
end
def self.down
remove_column :users, :identity_url
end
end