NestJS - Database with TypeORM
Identify the error in this entity definition:
@Entity()
export class Product {
@PrimaryGeneratedColumn()
id: number;
@Column({ type: 'varchar' })
price: number;
}