Fix jwt-token

This commit is contained in:
2025-09-22 06:41:16 +02:00
parent 2605408ec7
commit 3f2b919f8b

View File

@@ -101,6 +101,10 @@ module.exports = (sequelize) => {
}
}, {
tableName: 'management_users',
underscored: true, // Add this line
timestamps: true, // Add this line
createdAt: 'created_at', // Add this line
updatedAt: 'updated_at', // Add this line
indexes: [
{
unique: true,