Skip to content

Commit

Permalink
added missing comma to pg query
Browse files Browse the repository at this point in the history
  • Loading branch information
alxford45 committed Nov 29, 2020
1 parent d4ae709 commit 9cc8177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/ticket/ticket.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class TicketService {
const query: QueryConfig = {
name: 'insert_device',
text:
'INSERT INTO device(ticket_id, manufacturer, model, operating_system, operating_system_version, component) VALUES ($1, $2, $3, $4, $5 $6) RETURNING *',
'INSERT INTO device(ticket_id, manufacturer, model, operating_system, operating_system_version, component) VALUES ($1, $2, $3, $4, $5, $6) RETURNING *',
values: [
ticket_id,
manufacturer,
Expand Down

0 comments on commit 9cc8177

Please sign in to comment.