简体   繁体   中英

typeORM: "message": "Data type \"Object\" in \"..." is not supported by \"postgres\" database."

Given the following entity definition:

@Entity()
export class User extends BaseEntity {
  @Column({ nullable: true })
  name!: string | null;
  
  @Column()
  age!: number;
}

The following error appears:

typeORM:   "message": "Data type \"Object\" in \"User.name" is not supported by \"postgres\" database."

...

name: 'DataTypeNotSupportedError',
  message:
   'Data type "Object" in "User.name" is not supported by "postgres" database.' }

When looking at the build, I see that the metadata that's emitted by TS addresses it as object:

__decorate([
    typeorm_1.Column({ nullable: true }),
    __metadata("design:type", Object)
], User.prototype, "name", void 0);

What am I doing wrong?

The issue stems from this part right here:

@Column({ nullable: true })
name!: string | null;

When creating a union type, the reflected type will be Object . An easy way to overcome it will be to do something like:

@Column({ nullable: true })
name?: string;

You need to provide a data type explicitly.

@Column({ type: 'varchar', nullable: true })
name: string | null;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM