X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0caaf54de5b85070548381a814106a07f366b11a..959442d087b9b25fbec9c78ec122106b82d887dd:/db/migrate/055_change_map_bug_comment_type.rb diff --git a/db/migrate/055_change_map_bug_comment_type.rb b/db/migrate/055_change_map_bug_comment_type.rb new file mode 100644 index 000000000..bf009c3dd --- /dev/null +++ b/db/migrate/055_change_map_bug_comment_type.rb @@ -0,0 +1,11 @@ +require 'lib/migrate' + +class ChangeMapBugCommentType < ActiveRecord::Migration + def self.up + change_column :map_bug_comment, :comment, :text + end + + def self.down + change_column :map_bug_comment, :comment, :string + end +end