projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
35186100dd6a2b65b6607cce4716b4a2dd770025
[rails.git]
/
db
/
migrate
/
055_change_map_bug_comment_type.rb
1
require 'migrate'
2
3
class ChangeMapBugCommentType < ActiveRecord::Migration
4
def self.up
5
change_column :map_bug_comment, :comment, :text
6
end
7
8
def self.down
9
change_column :map_bug_comment, :comment, :string
10
end
11
end