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
/
20090611124949_adding_state_change_to_comments.rb
blob
9c7b0c79aaa4b4f787b63e1b3e26fa8cc45b6ea2
1
class AddingStateChangeToComments < ActiveRecord::Migration
2
def self.up
3
add_column :comments, :state_change, :string
4
end
5
6
def self.down
7
remove_column :comments, :state_change
8
end
9
end