diff --git a/src/models/TrackScan.ts b/src/models/TrackScan.ts index c7bc0b9..f6ffb81 100644 --- a/src/models/TrackScan.ts +++ b/src/models/TrackScan.ts @@ -1,4 +1,4 @@ -import { PrimaryGeneratedColumn, Column } from "typeorm"; +import { PrimaryGeneratedColumn, Column, ManyToOne } from "typeorm"; import { IsBoolean, IsDateString, @@ -25,14 +25,6 @@ export class TrackScan extends Scan { @IsInt() id: number; - /** - * The associated runner. - */ - @Column() - @IsNotEmpty() - //TODO: Relationship - runner: Runner; - /** * The associated track. */