Skip to content

Commit

Permalink
MOD: activeDateTime 관련 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
urimJ committed Dec 9, 2023
1 parent faaa3e3 commit dd44fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ app.get('/mypage/myCollection/artistTab', verifyToken, async (req, res)=>{
app.get('/mypage/myCollection/:artistId/active', verifyToken, async (req, res)=>{
const userId = req.decoded.userId;
const artistId = req.params.artistId;
const sql = `SELECT c.albumJacket, c.albumName, c.activeDateTime, c.photoCardQuant
const sql = `SELECT c.albumJacket, c.albumName, uc.activeDateTime, c.photoCardQuant
FROM collections c
INNER JOIN UserCollections uc ON uc.albumName = c.albumName
INNER JOIN users u ON u.userId = uc.userId
Expand Down

0 comments on commit dd44fee

Please sign in to comment.