오류 수정, 통계 보강

This commit is contained in:
2025-06-08 20:21:37 +09:00
parent 1a3706d7a5
commit 141a0de6d0
42 changed files with 2645 additions and 799 deletions
+14
View File
@@ -55,6 +55,20 @@ const Club = sequelize.define('Club', {
defaultValue: 15,
comment: '여성 기본 핸디캡'
},
averageCalculationPeriod: {
type: DataTypes.ENUM(
'3month',
'6month',
'1year',
'firsthalf',
'secondhalf',
'quarterly',
'total'
),
allowNull: false,
defaultValue: '6month',
comment: '에버리지 계산 기간'
},
createdAt: {
type: DataTypes.DATE,
allowNull: false,