10 lines
208 B
Ruby
10 lines
208 B
Ruby
|
|
class CreatePhysicalTickets < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :physical_tickets do |t|
|
||
|
|
t.integer :ticket_purchase_id, null: false
|
||
|
|
|
||
|
|
t.timestamps null: false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|