This commit is contained in:
fro1991
2025-11-11 00:22:27 +07:00
2 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,9 @@ export class EarchiveApproval {
@PrimaryGeneratedColumn("uuid") @PrimaryGeneratedColumn("uuid")
id: string; id: string;
@Column({ type: 'int', nullable: true , default : 0})
sorts: Number;
@Column({ name: 'docid', type: 'uuid', nullable: true }) @Column({ name: 'docid', type: 'uuid', nullable: true })
docid: string; docid: string;

View File

@ -68,6 +68,12 @@ export class TrxReceiver {
}) })
bsb_number: string; bsb_number: string;
@Column({
nullable: true,
length: 256,
})
identity_number: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;