Removed relation that was already implemented in the super

ref #11
This commit is contained in:
Nicolai Ort 2020-12-02 15:36:11 +01:00
parent f32291d714
commit 4d593eb840
1 changed files with 1 additions and 9 deletions

View File

@ -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.
*/