repo.or.cz
/
gitorious.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Handle not ready repos
[gitorious.git]
/
db
/
migrate
/
015_add_ready_to_ssh_key.rb
blob
bcdf59416f564f9db77670560af1502830e3d4f7
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