From e7f52021c7e5ccd07de91e357195fd53a3e1f87e Mon Sep 17 00:00:00 2001 From: laxman h Date: Mon, 20 Apr 2026 14:05:59 +0530 Subject: [PATCH] department an designation character limit increased in user able --- src/models/User.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/User.ts b/src/models/User.ts index 59db741..a379482 100644 --- a/src/models/User.ts +++ b/src/models/User.ts @@ -173,11 +173,11 @@ User.init( comment: 'Full Name for display' }, department: { - type: DataTypes.STRING(100), + type: DataTypes.STRING(255), allowNull: true }, designation: { - type: DataTypes.STRING(100), + type: DataTypes.STRING(255), allowNull: true }, phone: {