foodsoft/db/migrate/20181204000000_clear_invalid_invoices_from_orders.rb
2020-09-05 14:40:11 +02:00

8 lines
243 B
Ruby

class ClearInvalidInvoicesFromOrders < ActiveRecord::Migration[4.2]
class Order < ActiveRecord::Base; end
class Invoice < ActiveRecord::Base; end
def up
Order.where.not(invoice_id: Invoice.all).update_all(invoice_id: nil)
end
end