by ronew | Jun 28, 2022 | PostgreSQL, TypeORM
I had this entity import {Entity, PrimaryGeneratedColumn, Column} from “typeorm”; @Entity() export class User { @PrimaryGeneratedColumn() id!: number; @Column(‘text’) firstName!: string; } and I was getting the error “column “firstName”...