]> git.openstreetmap.org Git - rails.git/blob - db/migrate/055_change_map_bug_comment_type.rb
Merge branch 'master' into openstreetbugs2
[rails.git] / db / migrate / 055_change_map_bug_comment_type.rb
1 require 'lib/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