suitepro/db/migrate/108_add_identity_url_to_users.rb
2020-11-22 21:20:06 +01:00

9 lines
192 B
Ruby

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