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