]> git.openstreetmap.org Git - rails.git/blob - db/migrate/055_change_map_bug_comment_type.rb
Merge remote-tracking branch 'upstream/pull/4705'
[rails.git] / db / migrate / 055_change_map_bug_comment_type.rb
1 class ChangeMapBugCommentType < ActiveRecord::Migration[4.2]
2   def self.up
3     change_column :map_bug_comment, :comment, :text
4   end
5
6   def self.down
7     change_column :map_bug_comment, :comment, :string
8   end
9 end