mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
12 lines
303 B
Ruby
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
|