Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hassanelnajjar committed Sep 2, 2023
1 parent fab118d commit fd4799a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/database/shopify_sessions/InsertSession.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { query } from '../connect.js';
const insertSession = async ({ id, shop, state, accessToken }) => {
const sql = `
INSERT INTO shopify_sessions
(id, accessToken, shop, state,isOnline)
(id, "accessToken", shop, state,"isOnline")
VALUES
($1, $2, $3, $4,0)
($1, $2, $3, $4,FALSE)
RETURNING *
`;

Expand Down

0 comments on commit fd4799a

Please sign in to comment.