Added TicketScanning Model

This commit is contained in:
siddhantbajaj 2017-07-11 17:05:07 +05:30
parent 93d5e360ca
commit c066aadae2
4 changed files with 20 additions and 1 deletions

View file

@ -0,0 +1,9 @@
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