clarion/db/migrate/20141012101004_create_slots.rb

13 lines
285 B
Ruby
Raw Normal View History

2014-10-12 13:26:07 +03:00
class CreateSlots < ActiveRecord::Migration
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