fix: remove UNSIGNED

This commit is contained in:
karishmas6
2024-09-25 19:37:05 +05:30
parent af62e91388
commit 59e563b161

View File

@@ -19,7 +19,7 @@ class User extends Model<UserAttributes, UserCreationAttributes> implements User
User.init( User.init(
{ {
id: { id: {
type: DataTypes.INTEGER.UNSIGNED, type: DataTypes.INTEGER,
autoIncrement: true, autoIncrement: true,
primaryKey: true, primaryKey: true,
}, },