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

@@ -56,6 +56,11 @@ module.exports = (sequelize) => {
defaultValue: DataTypes.NOW,
comment: 'When heartbeat was received by server'
},
raw_payload: {
type: DataTypes.JSON,
allowNull: true,
comment: 'Complete raw payload received from detector (for debugging)'
},
created_at: {
type: DataTypes.DATE,
defaultValue: DataTypes.NOW