feature/11-new_classes #15

Merged
niggl merged 55 commits from feature/11-new_classes into dev 2020-12-02 17:48:19 +00:00
Showing only changes of commit 4d593eb840 - Show all commits

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