feat(backend): Groep aan primaire sleutel van submissions en questions toegevoegd.

This commit is contained in:
Gerald Schmittinger 2025-04-06 23:08:11 +02:00
parent dbc1da741c
commit 12c1505ba7
3 changed files with 13 additions and 6 deletions

View file

@ -20,6 +20,9 @@ export class Question {
@PrimaryKey({ type: 'integer', autoincrement: true })
sequenceNumber?: number;
@ManyToOne({ entity: () => Group, primary: true })
inGroup: Group;
@ManyToOne({
entity: () => Student,
})