2023-08-06 17:49:58 -07:00
|
|
|
class AddConversionTimestampsToSwfAssets < ActiveRecord::Migration[4.2]
|
2011-08-07 15:23:44 -07:00
|
|
|
def self.up
|
|
|
|
add_column :swf_assets, :reported_broken_at, :timestamp
|
|
|
|
add_column :swf_assets, :converted_at, :timestamp
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :swf_assets, :converted_at
|
|
|
|
remove_column :swf_assets, :reported_broken_at
|
|
|
|
end
|
|
|
|
end
|