Handle not ready repos
[gitorious.git] / db / migrate / 027_add_identity_url_to_users.rb
blob3001c06087b499a82286e21d5b26b85c129e14f7
1 class AddIdentityUrlToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :identity_url, :text
4   end
6   def self.down
7     remove_column :users, :identity_url
8   end
9 end