1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-25 02:04:15 +02:00

Increasing possible media count per folder fixes #559

This commit is contained in:
Patrik J. Braun 2022-11-21 21:45:43 +01:00
parent 868d812041
commit 277f50efc4
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ export class DirectoryEntity
isPartial?: boolean;
@Column('smallint', { unsigned: true })
@Column('mediumint', { unsigned: true })
mediaCount: number;
@Index()

View File

@ -1,4 +1,4 @@
/**
* This version indicates that the SQL sql/entities/*Entity.ts files got changed and the db needs to be recreated
*/
export const DataStructureVersion = 27;
export const DataStructureVersion = 28;