summaryrefslogtreecommitdiff
path: root/db/migrate/108_add_identity_url_to_users.rb
blob: f5af77b24a3d6389c36cffdd49b7de139bbd8232 (plain)
1
2
3
4
5
6
7
8
9
class AddIdentityUrlToUsers < ActiveRecord::Migration
  def self.up
    add_column :users, :identity_url, :string
  end

  def self.down
    remove_column :users, :identity_url
  end
end