update package.json
This commit is contained in:
parent
97ffae009b
commit
874b863b1e
4 changed files with 159 additions and 98 deletions
|
@ -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;
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue