chore(backend): fix wrong column description in UserProfile

This commit is contained in:
Kisaragi 2024-06-15 21:13:58 +09:00 committed by GitHub
parent 379ce0145b
commit 969ed9ae21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ export class MiUserProfile {
@Column('varchar', {
length: 128, nullable: true,
comment: 'The password hash of the User. It will be null if the origin of the user is local.',
comment: 'The password hash of the User. It will be null if the origin of the user is remote.',
})
public password: string | null;