All files / src/core/models standardTransfer.model.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 0/0
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 258x 8x                             8x     8x       8x  
import { AllowNull, Column, Table } from "sequelize-typescript";
import PaymentDetailsBase from "./paymentDetails.model.base";
 
@Table({
    modelName: "standard_transfer",
    timestamps: false,
    indexes: [{
        fields: ['transaction_id']
    }, {
        fields: ['recipient'],
        type: 'FULLTEXT'
    }, {
        fields: ['description'],
        type: 'FULLTEXT'
    }]
})
export default class StandardTransfer extends PaymentDetailsBase {
    @AllowNull(true)
    @Column
    recipient_iban!: string;
 
    @AllowNull(true)
    @Column
    description!: string;
}