feat(vocab): add hard status management for SRS items and update related logic

This commit is contained in:
Torsten Schulz (local)
2026-08-20 15:17:11 +02:00
parent 2c0944ae2c
commit 3a0945734f
10 changed files with 181 additions and 263 deletions

View File

@@ -81,6 +81,12 @@ VocabSrsItem.init({
allowNull: false,
defaultValue: 0,
field: 'lapse_count'
},
isHard: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
field: 'is_hard'
}
}, {
sequelize,