108_add_identity_url_to_users.rb
9 lines
| 187 B
| text/x-ruby
|
RubyLexer
|
r2379 | class AddIdentityUrlToUsers < ActiveRecord::Migration | ||
def self.up | ||||
add_column :users, :identity_url, :string | ||||
end | ||||
def self.down | ||||
remove_column :users, :identity_url | ||||
end | ||||
end | ||||