AN
Size: a a a
AN
LK
IK
LK
LK
LK
LK
LK
AN
А
@Column({
name: 'aboutTexts'
})
aboutTexts: IAboutText[];
export interface IAboutText {
position: number
title: string
description: string
}
Ошибка : Data type "Array" in "Project.aboutTexts" is not supported by "postgres" database.K
@Column({array: true})А
А
@Column("text",{
array: true,
name: 'aboutTexts'
})
это как я понимаю type=text. не понимаю повлияет ли это на что либо вдальнейшемА
K
@Column("jsonb", {array: true})А
@Column("jsonb", {array: true})BK
BK

КБ