1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20170227104934_migrate_slots_reservations.rb

16 lines
383 B
Ruby

# frozen_string_literal:true
class MigrateSlotsReservations < ActiveRecord::Migration[4.2]
def up
Slot.all.each do |slot|
SlotsReservation.create!({slot_id: slot.id, reservation_id: slot.reservation_id})
end
end
def down
SlotsReservation.all.each do |sr|
Slot.find(sr.slot_id).update_attributes(:reservation_id => sr.reservation_id)
end
end
end