;]
[askyou.git] / db / migrate / 108_add_identity_url_to_users.rb
blobf5af77b24a3d6389c36cffdd49b7de139bbd8232
1 class AddIdentityUrlToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :identity_url, :string
4   end
6   def self.down
7     remove_column :users, :identity_url
8   end
9 end