79444844

Date: 2025-02-17 08:48:31
Score: 3
Natty:
Report link

Change your users.model.ts from:

@Column({ type: DataType.NUMBER, unique: true, autoIncrement: true, primaryKey: true }) id: number;

to:

@Column({ type: DataType.INTEGER, unique: true, autoIncrement: true, primaryKey: true }) id: number;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Column
  • User mentioned (0): @Column
  • Low reputation (1):
Posted by: TheBeJIIHiu