2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-06-03 16:05:59 +05:30
|
|
|
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
|