remove todo for foreign keys since there is an issue now

This commit is contained in:
Ulf Gebhardt 2023-03-04 00:02:48 +01:00
parent 277df94052
commit 76cbcc2393
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -65,8 +65,6 @@ export class Event extends BaseEntity {
@JoinColumn({ name: 'involved_contribution_id', referencedColumnName: 'id' })
involvedContribution: Contribution | null
// TEST do we need the Id field definition?
// TODO we need proper foreign keys to have things working without the explicit column
@Column({ name: 'involved_contribution_message_id', type: 'int', unsigned: true, nullable: true })
involvedContributionMessageId: number | null