1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20160825141326_create_tickets.rb

12 lines
303 B
Ruby

class CreateTickets < ActiveRecord::Migration
def change
create_table :tickets do |t|
t.belongs_to :reservation, index: true, foreign_key: true
t.belongs_to :event_price_category, index: true, foreign_key: true
t.integer :booked
t.timestamps null: false
end
end
end