@Entity('user')
export class UserEntity {
@PrimaryGeneratedColumn('uuid') id: string;
@Column({
type: 'varchar',
nullable: false,
unique: true
})
username: string;
@Column({
type: 'varchar',
nullable: false
})
password: string;
}
What purpose does the 'user' in @Entity() have? In the controller, we put parameters inside the @Get() or similar methods to specify route...but no such thing happens in the Entity file.
This is where I got the code from: https://www.codemag.com/Article/2001081/Nest.js-Step-by-Step-Part-3-Users-and-Authentication
question from:https://stackoverflow.com/questions/65844279/what-does-putting-a-parameter-in-entity-do