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