]> git.openstreetmap.org Git - rails.git/blob - db/migrate/056_add_date_closed.rb
Rework some of the OAuth2 views, adding links and messages when there are no applicat...
[rails.git] / db / migrate / 056_add_date_closed.rb
1 class AddDateClosed < ActiveRecord::Migration[4.2]
2   def self.up
3     add_column :map_bugs, :date_closed, :timestamp
4   end
5
6   def self.down
7     remove_column :map_bugs, :date_closed
8   end
9 end