number data types

This commit is contained in:
Ben Wilson 2023-07-22 17:46:21 -04:00
parent c72cfff668
commit e2a0d16577
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export class ClientStatisticsEntity extends TrackedEntity {
})
time: Date;
@Column()
@Column({ type: 'real' })
difficulty: number;

View File

@ -25,7 +25,7 @@ export class ClientEntity extends TrackedEntity {
@Column({ default: 0 })
@Column({ type: 'real', default: 0 })
bestDifficulty: number