latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +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 { import {
IsBoolean, IsBoolean,
IsDateString, IsDateString,
@ -25,14 +25,6 @@ export class TrackScan extends Scan {
@IsInt() @IsInt()
id: number; id: number;
/**
* The associated runner.
*/
@Column()
@IsNotEmpty()
//TODO: Relationship
runner: Runner;
/** /**
* The associated track. * The associated track.
*/ */