with lib typeorm-fixtures-cli
, is there a way to seed the entity with the specified id “1013”. When I’m trying, the id is not “1013” but “1”
entity: Product
items:
product1013:
id: 1013
name: My product
My entity :
@Entity('products')
export class Product {
@PrimaryGeneratedColumn() id: number
@Column() name: string
}