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
/
20091102114936_change_comment_line_number_to_string.rb
blob
71062eae4eee2c1ac54cc8953a6d48646379ad3a
1
class ChangeCommentLineNumberToString < ActiveRecord::Migration
2
def self.up
3
change_column :comments, :first_line_number, :string
4
end
5
6
def self.down
7
change_column :comments, :first_line_number, :integer
8
end
9
end