1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

mediaentity rating back to unsigned

This commit is contained in:
gras 2024-03-30 22:04:07 +01:00
parent 9aab44b7af
commit 78fbc942b9

View File

@ -132,7 +132,7 @@ export class MediaMetadataEntity implements MediaMetadata {
@Column(() => PositionMetaDataEntity) @Column(() => PositionMetaDataEntity)
positionData: PositionMetaDataEntity; positionData: PositionMetaDataEntity;
@Column('tinyint', {unsigned: false}) @Column('tinyint', {unsigned: true})
@Index() @Index()
rating: 0 | 1 | 2 | 3 | 4 | 5; rating: 0 | 1 | 2 | 3 | 4 | 5;