I have task entity like this:
import {BaseEntity, Column, Entity, PrimaryGeneratedColumn} from "typeorm";
@Entity()
export class Task extends BaseEntity{
@PrimaryGeneratedColumn()
id:number;
@Column()
title:string
@Column()
description:string
}
I want to add created_at and updated_at field to this entity and populate it automatically with Node.js like Laravel framework. My database is postgres