Jordi Mèlich Pelegrí

Results 2 issues of Jordi Mèlich Pelegrí

Given the following Plant entity: ``` @Entity() export class Plant extends BaseEntity { @CreateDateColumn() createdAt: Date; @UpdateDateColumn() updatedAt: Date; @PrimaryGeneratedColumn() id: number; @Column() name: string; @Column({ nullable: true, default: '',...

I have dates stored as timestamp in database (i.e: "1617706041927"), so I need to manage them as it but this plugin always uses UTC(i.e: "2021-04-06T19:45:00.000Z") even I configure the plugin...

bug
needs investigation