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
/
20110223130355_add_suspended_at_to_projects.rb
blob
fd0e3e3bb0fb661c38838917a05f3e8c66fec699
1
class AddSuspendedAtToProjects < ActiveRecord::Migration
2
def self.up
3
add_column :projects, :suspended_at, :datetime, :default => nil
4
end
5
6
def self.down
7
remove_column :projects, :suspended_at
8
end
9
end