Handle not ready repos
[gitorious.git] / db / migrate / 015_add_ready_to_ssh_key.rb
blobbcdf59416f564f9db77670560af1502830e3d4f7
1 class AddReadyToSshKey < ActiveRecord::Migration
2   def self.up
3     add_column :ssh_keys, :ready, :boolean, :default => false
4   end
6   def self.down
7     remove_column :ssh_keys, :ready
8   end
9 end