mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
12 lines
223 B
Ruby
12 lines
223 B
Ruby
|
class CreateSlots < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :slots do |t|
|
||
|
t.datetime :start_at
|
||
|
t.datetime :end_at
|
||
|
t.belongs_to :reservation, index: true
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|