Fixed wrong type

This commit is contained in:
Nicolai Ort 2020-11-27 18:40:11 +01:00
parent e5562efe35
commit 27462b0615

View File

@ -22,5 +22,5 @@ export class Track {
@Column() @Column()
@IsInt() @IsInt()
@IsPositive() @IsPositive()
length: string; length: number;
} }