mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
11 lines
287 B
Ruby
11 lines
287 B
Ruby
# frozen_string_literal:true
|
|
|
|
class CreateSlotsReservations < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :slots_reservations do |t|
|
|
t.belongs_to :slot, index: true, foreign_key: true
|
|
t.belongs_to :reservation, index: true, foreign_key: true
|
|
end
|
|
end
|
|
end
|