protcol data commands

This commit is contained in:
Julian Krauser 2024-10-13 15:48:01 +02:00
parent 475a13ce36
commit b9b258a1f6
16 changed files with 335 additions and 10 deletions

View file

@ -5,10 +5,10 @@ import { member } from "./member";
@Entity()
export class protocolPresence {
@PrimaryColumn()
memberId: string;
memberId: number;
@PrimaryColumn()
protocolId: string;
protocolId: number;
@ManyToOne(() => member, {
nullable: false,