Skip to content
Snippets Groups Projects

hotfix: transactions 테이블 구조 일치

Merged Eunhak Lee requested to merge hotfix/sql into main
2 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
2
@@ -37,8 +37,8 @@ const myRepository = {
async getCombinationIdByTransactionId(transactionId) {
const query = `
SELECT combination_id
FROM pcregister_transection
WHERE transaction_id = $1
FROM transactions
WHERE id = $1
`;
const values = [transactionId];
const { rows } = await pool.query(query, values);
Loading