Handle not ready repos
[gitorious.git] / db / migrate / 018_add_url_to_users.rb
blob718f6c9f2fde33f4927cb6de2119028ae96138d0
1 class AddUrlToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :url, :text
4   end
6   def self.down
7     remove_column :users, :url
8   end
9 end