Added relationships for donation

ref #11
This commit is contained in:
Nicolai Ort 2020-12-01 19:13:56 +01:00
parent 1c43442300
commit 2b693917b0
2 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column, ManyToOne } from "typeorm";
import {
IsInt,
IsNotEmpty,
@ -24,7 +24,7 @@ export abstract class Donation {
*/
@Column()
@IsNotEmpty()
//TODO: Relationship
@ManyToOne(() => Participant, donor => donor.donations)
donor: Participant;
/**

View File

@ -1,4 +1,4 @@
import { PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column, OneToMany } from "typeorm";
import {
IsEmail,
IsInt,
@ -8,6 +8,7 @@ import {
IsString,
} from "class-validator";
import { Address } from "./Address";
import { Donation } from "./Donation";
/**
* Defines the participant interface.
@ -72,4 +73,10 @@ export abstract class Participant {
@IsOptional()
@IsEmail()
email?: string;
/**
* Used to link the participant as the donor of a donation.
*/
@OneToMany(() => Donation, donation => donation.donor)
donations: Donation[];
}