10 lines
205 B
Ruby
10 lines
205 B
Ruby
|
class RemoveProductNotifiedAt < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :product_build_lists, :notified_at
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
add_column :product_build_lists, :notified_at, :datetime
|
||
|
end
|
||
|
end
|