mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
0e94f8c3d4
This reverts commit 4cbfbdc4e0
.
9 lines
252 B
Ruby
9 lines
252 B
Ruby
class CreateSlotsReservations < ActiveRecord::Migration
|
|
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
|