initial split descriptions impl.
This commit is contained in:
parent
05a499ac55
commit
1696e31797
13 changed files with 61 additions and 3 deletions
|
|
@ -43,6 +43,11 @@ export class MiMeta {
|
|||
})
|
||||
public description: string | null;
|
||||
|
||||
@Column('text', {
|
||||
nullable: true,
|
||||
})
|
||||
public about: string | null;
|
||||
|
||||
/**
|
||||
* メンテナの名前
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue