diff --git a/strategies/SQLStrategy.js b/strategies/SQLStrategy.js index cfc0561..12e246b 100644 --- a/strategies/SQLStrategy.js +++ b/strategies/SQLStrategy.js @@ -24,7 +24,7 @@ module.exports = class SQLStrategy { async storeShop({ shop, accessToken }) { await this.knex.raw( - `INSERT OR IGNORE INTO shops (shopify_domain, access_token) VALUES ('${shop}', '${accessToken}')` + `INSERT IGNORE INTO shops (shopify_domain, access_token) VALUES ('${shop}', '${accessToken}')` ); return {accessToken};