clarion/db/migrate/20141012101004_create_slots.rb

13 lines
290 B
Ruby

class CreateSlots < ActiveRecord::Migration[4.2]
def change
create_table :slots do |t|
t.references :hall, index: true
t.timestamp :starts_at, null: false
t.timestamp :ends_at, null: false
t.references :event, index: true
t.timestamps
end
end
end