]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/055_change_map_bug_comment_type.rb
Tidy up some of the map bugs code
[rails.git] / db / migrate / 055_change_map_bug_comment_type.rb
index bf009c3dd2721443d9cf4719bfe70558b2eae08a..2a64bf216477ac818630a1f19f55ce9e89bb271a 100644 (file)
@@ -2,10 +2,10 @@ require 'lib/migrate'
 
 class ChangeMapBugCommentType < ActiveRecord::Migration
   def self.up
-       change_column :map_bug_comment, :comment, :text
+    change_column :map_bug_comment, :comment, :text
   end
 
   def self.down
-       change_column :map_bug_comment, :comment, :string
+    change_column :map_bug_comment, :comment, :string
   end
 end