Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
🐛 Fix table name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Jul 17, 2019
1 parent bf3a22f commit a447092
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "staart-manager",
"version": "1.0.69",
"version": "1.0.70",
"main": "index.js",
"repository": "[email protected]:AnandChowdhary/staart.git",
"author": "Anand Chowdhary <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion setup/internal/staart-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.69
1.0.70
2 changes: 1 addition & 1 deletion src/helpers/mysql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ export const addIsPrimaryToEmail = async (email: Email) => {
return email;
};

export const tableName = (name: string) => `${DB_TABLE_PREFIX}${name}`;
export const tableName = (name: string) => `\`${DB_TABLE_PREFIX}${name}\``;

0 comments on commit a447092

Please sign in to comment.