update package.json

This commit is contained in:
Julian Krauser 2025-06-07 15:25:41 +02:00
parent 97ffae009b
commit 874b863b1e
4 changed files with 159 additions and 98 deletions

View file

@ -39,8 +39,8 @@ export class member {
@Column({ type: "varchar", length: 255, unique: true, nullable: true })
internalId?: string;
@Column({ type: "varchar", length: 255 })
note: string;
@Column({ type: "varchar", length: 255, nullable: true })
note?: string;
@Column()
salutationId: number;

View file

@ -72,7 +72,7 @@ export const member_table = new Table({
{ name: "nameaffix", ...getTypeByORM("varchar") },
{ name: "birthdate", ...getTypeByORM("date") },
{ name: "createdAt", ...getTypeByORM("datetime", false, 6), default: getDefaultByORM("currentTimestamp", 6) },
{ name: "note", ...getTypeByORM("varchar") },
{ name: "note", ...getTypeByORM("varchar", true) },
],
foreignKeys: [
new TableForeignKey({