Blob of db/migrate/015_add_ready_to_ssh_key.rb (raw blob data)

1 class AddReadyToSshKey < ActiveRecord::Migration
2 def self.up
3 add_column :ssh_keys, :ready, :boolean, :default => false
4 end
5
6 def self.down
7 remove_column :ssh_keys, :ready
8 end
9 end