Change fileSizeInByte to bigint from int to handle large size (#534)

This commit is contained in:
Alex
2022-08-26 09:07:59 -07:00
committed by GitHub
parent f9b1b12b10
commit 4596a8ee01
3 changed files with 25 additions and 14 deletions

View File

@@ -23,7 +23,7 @@ export class ExifEntity {
@Column({ type: 'integer', nullable: true })
exifImageHeight!: number | null;
@Column({ type: 'integer', nullable: true })
@Column({ type: 'bigint', nullable: true })
fileSizeInByte!: number | null;
@Column({ type: 'varchar', nullable: true })