update
This commit is contained in:
@ -1,10 +1,7 @@
|
||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne, JoinTable } from "typeorm";
|
||||
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||
|
||||
import { Status } from "../types/status";
|
||||
import { TrxPartner } from "./trx_partners";
|
||||
import { TrxCif } from "./trx_cifs";
|
||||
import { TrxCustomer } from "./trx_customers";
|
||||
import { Branch } from "./branchs";
|
||||
import { TrxCustomer } from "./trx_customers";
|
||||
|
||||
@Entity("trx_customer_accounts", { schema: "trx" })
|
||||
export class TrxCustomerAccount {
|
||||
|
||||
@ -63,13 +63,13 @@ export class TrxCustomer {
|
||||
nullable: false,
|
||||
length: 256,
|
||||
})
|
||||
cover: string;
|
||||
cover_file: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
length: 256,
|
||||
})
|
||||
desclimer: string;
|
||||
desclimer_file: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
|
||||
Reference in New Issue
Block a user