Add movedToUri and knownAs to DB model user

This commit is contained in:
Cleo John 2022-11-24 11:39:40 +00:00
parent 817cad67b2
commit 268b4da2cd

View File

@ -74,6 +74,12 @@ export class User {
})
public movedToUri: string | null;
@Column('simple-array', {
nullable: true,
comment: 'URIs the user is known as too',
})
public alsoKnownAs: string[] | null;
@Column('integer', {
default: 0,
comment: 'The count of notes.',