2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-07-11 17:05:07 +05:30
|
|
|
class CreateTicketScannings < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :ticket_scannings do |t|
|
|
|
|
|
t.integer :physical_ticket_id, null: false
|
|
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|