Fix jwt-token

This commit is contained in:
2025-08-18 05:42:33 +02:00
parent af2a1078ac
commit 8a9a5a7e3b
4 changed files with 149 additions and 9 deletions

View File

@@ -74,6 +74,11 @@ module.exports = (sequelize) => {
defaultValue: ['sms'],
comment: 'Array of alert channels: sms, email, webhook'
},
sms_phone_number: {
type: DataTypes.STRING,
allowNull: true,
comment: 'Phone number for SMS alerts'
},
webhook_url: {
type: DataTypes.STRING,
allowNull: true,