Fix jwt-token

This commit is contained in:
2025-09-10 06:13:47 +02:00
parent b0a700a6cf
commit 7877902698
6 changed files with 165 additions and 5 deletions

View File

@@ -91,6 +91,11 @@ module.exports = (sequelize) => {
defaultValue: false,
comment: 'Whether this detection requires immediate security action'
},
raw_payload: {
type: DataTypes.JSON,
allowNull: true,
comment: 'Complete raw payload received from detector (for debugging)'
},
created_at: {
type: DataTypes.DATE,
defaultValue: DataTypes.NOW