@@ -20,7 +20,6 @@ export class TrackScan extends Scan {
|
||||
/**
|
||||
* The associated track.
|
||||
*/
|
||||
@Column()
|
||||
@IsNotEmpty()
|
||||
@ManyToOne(() => Track, track => track.scans)
|
||||
track: Track;
|
||||
@@ -28,7 +27,6 @@ export class TrackScan extends Scan {
|
||||
/**
|
||||
* The associated card.
|
||||
*/
|
||||
@Column()
|
||||
@IsNotEmpty()
|
||||
@ManyToOne(() => RunnerCard, card => card.scans)
|
||||
card: RunnerCard;
|
||||
@@ -36,7 +34,6 @@ export class TrackScan extends Scan {
|
||||
/**
|
||||
* The scanning station.
|
||||
*/
|
||||
@Column()
|
||||
@IsNotEmpty()
|
||||
@ManyToOne(() => ScanStation, station => station.scans)
|
||||
station: ScanStation;
|
||||
|
||||
Reference in New Issue
Block a user