]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/054_refactor_map_bug_tables.rb
Cleanup trailing whitespace
[rails.git] / db / migrate / 054_refactor_map_bug_tables.rb
index d3839aaa87a72a4e802604a176694915bb24870c..588f654d0974527065824c4fb28b71726d877ba0 100644 (file)
@@ -4,7 +4,7 @@ class RefactorMapBugTables < ActiveRecord::Migration
   def self.up
     create_table :map_bug_comment do |t|
       t.column :bug_id, :bigint, :null => false
-      t.boolean :visible, :null => false 
+      t.boolean :visible, :null => false
       t.datetime :date_created, :null => false
       t.string :commenter_name
       t.string :commenter_ip
@@ -12,7 +12,7 @@ class RefactorMapBugTables < ActiveRecord::Migration
       t.string :comment
     end
 
-    remove_column :map_bugs, :text 
+    remove_column :map_bugs, :text
 
     change_column :map_bug_comment, :id, :bigint