rosa-build/db/migrate/20120628165702_remove_produ...

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