Added TicketScanning Model
This commit is contained in:
parent
93d5e360ca
commit
c066aadae2
4 changed files with 20 additions and 1 deletions
9
db/migrate/20170711102511_create_ticket_scannings.rb
Normal file
9
db/migrate/20170711102511_create_ticket_scannings.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue