update
This commit is contained in:
@ -8,6 +8,7 @@ import { RemitMunisipo } from "./remit_munisipos";
|
||||
import { RemitPartner } from "./remit_partners";
|
||||
import { RemitSender } from "./remit_senders";
|
||||
import { RemitConfigTransactionType } from "./remit_config_transaction_types";
|
||||
import { RemitConfigTransactionChannel } from "./remit_config_transaction_channels";
|
||||
|
||||
@Entity("remit_transactions", { schema: "remits" })
|
||||
export class RemitTransaction {
|
||||
@ -155,4 +156,8 @@ export class RemitTransaction {
|
||||
@ManyToOne(() => RemitConfigTransactionType, { onDelete: "NO ACTION", nullable: true })
|
||||
@JoinTable()
|
||||
transaction_type: RemitConfigTransactionType;
|
||||
|
||||
@ManyToOne(() => RemitConfigTransactionChannel, { onDelete: "NO ACTION", nullable: true })
|
||||
@JoinTable()
|
||||
transaction_channel: RemitConfigTransactionChannel;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user