TypeOrm ругается на новое поле, как решить проблему?

Я использую typeOrm (postgresQl) и Nestjs Добавил к таблице новое поле:

  @Column('simple-json', { nullable: true })
  passwordReset: { token: string; expiration: string }; 

Но получаю ошибку, ругается на "неявный тип", но я же указал simple-json

Error: Undefined type error. Make sure you are providing an explicit type for the "passwordReset" of the "AdminEntity" class.


Ответы (0 шт):