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
/
011_add_ready_status_to_repositories.rb
blob
b508ded3e2b85309aea72fdf1a00924aeb6f6194
1
class AddReadyStatusToRepositories < ActiveRecord::Migration
2
def self.up
3
add_column :repositories, :ready, :boolean, :default => false
4
add_index :repositories, :ready
5
end
6
7
def self.down
8
remove_column :repositories, :ready
9
end
10
end