initial split descriptions impl.

This commit is contained in:
piuvas 2025-07-15 18:37:29 -03:00
parent 05a499ac55
commit 1696e31797
No known key found for this signature in database
13 changed files with 61 additions and 3 deletions

View file

@ -43,6 +43,11 @@ export class MiMeta {
})
public description: string | null;
@Column('text', {
nullable: true,
})
public about: string | null;
/**
*
*/

View file

@ -43,6 +43,10 @@ export const packedMetaLiteSchema = {
type: 'string',
optional: false, nullable: true,
},
about: {
type: 'string',
optional: false, nullable: true,
},
langs: {
type: 'array',
optional: false, nullable: false,