Fix jwt-token

This commit is contained in:
2025-09-22 06:18:17 +02:00
parent 0c17f431b6
commit bbf5afcf24
2 changed files with 2 additions and 2 deletions

View File

@@ -666,7 +666,7 @@ module.exports = {
defaultValue: 0 defaultValue: 0
}, },
priority: { priority: {
type: Sequelize.ENUM('low', 'normal', 'high', 'urgent'), type: Sequelize.ENUM('low', 'normal', 'medium', 'high', 'critical'),
defaultValue: 'normal' defaultValue: 'normal'
}, },
created_at: { created_at: {

View File

@@ -80,7 +80,7 @@ module.exports = (sequelize) => {
comment: 'Number of retry attempts' comment: 'Number of retry attempts'
}, },
priority: { priority: {
type: DataTypes.ENUM('low', 'medium', 'high', 'critical'), type: DataTypes.ENUM('low', 'normal', 'medium', 'high', 'critical'),
defaultValue: 'medium' defaultValue: 'medium'
}, },
created_at: { created_at: {