mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
Change fileSizeInByte to bigint from int to handle large size (#534)
This commit is contained in:
@@ -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 })
|
||||
|
||||
Reference in New Issue
Block a user