11 lines
206 B
Ruby
11 lines
206 B
Ruby
require 'migrate'
|
|
|
|
class AddDateClosed < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :map_bugs, :date_closed, :timestamp
|
|
end
|
|
|
|
def self.down
|
|
remove_column :map_bugs, :date_closed
|
|
end
|
|
end
|