X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/02ad2f5a5192404185d00ec1b53ae2982760c0ea..3a654c89197b40f4a623c0dd33b87b415623d97d:/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