X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7f598ab412674ce5a78da98c54aa2fe2e4a05792..cba08bb454a0e3571cfc3e858dc2b2817e7b7538:/db/migrate/056_add_date_closed.rb?ds=inline

diff --git a/db/migrate/056_add_date_closed.rb b/db/migrate/056_add_date_closed.rb
index bb4c19c1a..7b1a3233d 100644
--- a/db/migrate/056_add_date_closed.rb
+++ b/db/migrate/056_add_date_closed.rb
@@ -1,11 +1,11 @@
-require 'migrate'
+require "migrate"
 
-class AddDateClosed < ActiveRecord::Migration
+class AddDateClosed < ActiveRecord::Migration[5.0]
   def self.up
     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