10 lines
187 B
Ruby
10 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
|