feat: implement QTTR status tracking and update mechanism
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 56s

This commit is contained in:
Torsten Schulz (local)
2026-08-14 11:25:44 +02:00
parent bc9e7cfe3c
commit 3f2c474913
7 changed files with 87 additions and 2 deletions

View File

@@ -30,6 +30,12 @@ const Club = sequelize.define('Club', {
field: 'auto_fetch_rankings',
comment: 'Enable automatic TTR/QTTR rankings fetch for this club'
},
lastQttrValueChangeAt: {
type: DataTypes.DATE,
allowNull: true,
field: 'last_qttr_value_change_at',
comment: 'Zeitpunkt der letzten echten QTTR-Wertänderung; Erstbefüllungen werden nicht gezählt'
},
countryCode: {
type: DataTypes.STRING(2),
allowNull: false,