결제 수정

This commit is contained in:
2025-05-27 00:18:59 +09:00
parent 666d39704b
commit 27fbf0541d
5 changed files with 47 additions and 9 deletions
+3
View File
@@ -89,6 +89,9 @@ Club.associate = (models) => {
through: models.ClubFeature,
foreignKey: 'clubId',
});
// Member와의 관계 추가
Club.hasMany(models.Member, { foreignKey: 'clubId' });
};
module.exports = Club;