update
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import bcrypt from "bcryptjs";
|
||||
import { Status } from "../types/status";
|
||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, OneToOne, JoinColumn, ManyToOne, OneToMany, ManyToMany, JoinTable } from "typeorm";
|
||||
import { RemitPartner } from "./remit_partners";
|
||||
|
||||
@ -51,6 +52,12 @@ export class RemitTransfer {
|
||||
length: 64,
|
||||
})
|
||||
status: string;
|
||||
@Column({
|
||||
nullable: false,
|
||||
length: 64,
|
||||
default: "N",
|
||||
})
|
||||
beneficiary: Status;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
|
||||
Reference in New Issue
Block a user