Handle not ready repos
[gitorious.git] / db / migrate / 005_add_ssh_key_to_users.rb
blob886f83c4a5f709db354375c7357de902fb06f0bf
1 class AddSshKeyToUsers < ActiveRecord::Migration
2   def self.up
3     add_column :users, :ssh_key, :text
4   end
6   def self.down
7     remove_column :users, :ssh_key
8   end
9 end