member related data commands

This commit is contained in:
Julian Krauser 2024-09-27 14:55:34 +02:00
parent ade837b5ab
commit 58d863e5e0
26 changed files with 1115 additions and 9 deletions

View file

@ -10,22 +10,22 @@ export class communication {
@Column({ type: "boolean", default: false })
preferred: boolean;
@Column({ type: "varchar", length: 255 })
@Column({ type: "varchar", length: 255, nullable: true })
mobile: string;
@Column({ type: "varchar", length: 255 })
@Column({ type: "varchar", length: 255, nullable: true })
email: string;
@Column({ type: "varchar", length: 255 })
@Column({ type: "varchar", length: 255, nullable: true })
city: string;
@Column({ type: "varchar", length: 255 })
@Column({ type: "varchar", length: 255, nullable: true })
street: string;
@Column({ type: "integer" })
@Column({ type: "integer", nullable: true })
streetNumber: number;
@Column({ type: "varchar", length: 255 })
@Column({ type: "varchar", length: 255, nullable: true })
streetNumberAddition: string;
@ManyToOne(() => communicationType, (communicationType) => communicationType.communications, {