chore (backend): remove (technically) incorrect TypeORM decorator field

This commit is contained in:
naskya 2024-04-21 11:09:18 +09:00
parent d2dbfb37c7
commit 6b008c651a
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 1 additions and 1 deletions

View File

@ -179,11 +179,11 @@ export class DriveFile {
})
public isSensitive: boolean;
// Hint for what this file is used for
@Column({
type: "enum",
enum: ["userAvatar", "userBanner"],
nullable: true,
comment: "Hint for what the file is used for.",
})
public usageHint: DriveFileUsageHint;