X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4b17b92da09820dd7bf61a640fd37458b82b06fe..882700c5c8890ba28dc83a9dc526b7bc242a0278:/db/migrate/056_add_date_closed.rb diff --git a/db/migrate/056_add_date_closed.rb b/db/migrate/056_add_date_closed.rb index 7f609cade..c5aa2c2f5 100644 --- a/db/migrate/056_add_date_closed.rb +++ b/db/migrate/056_add_date_closed.rb @@ -2,12 +2,10 @@ require 'lib/migrate' class AddDateClosed < ActiveRecord::Migration def self.up - - add_column :map_bugs, :date_closed, :timestamp + add_column :map_bugs, :date_closed, :timestamp end def self.down - - remove_column :map_bugs, :date_closed + remove_column :map_bugs, :date_closed end end