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

100% Statements 8/8
100% Branches 0/0
100% Functions 0/0
100% Lines 6/6

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 25 26 27 28 29 308x 8x                               8x     8x       8x       8x  
import { Table, AllowNull, Column, DataType } from "sequelize-typescript";
import PaymentDetailsBase from "./paymentDetails.model.base";
 
 
@Table({
    modelName: "card_operation",
    timestamps: false,
    indexes: [{
        fields: ['transaction_id']
    }, {
        fields: ['recipient'],
        type: 'FULLTEXT'
    }, {
        fields: ['instrument'],
        type: 'FULLTEXT'
    }]
})
export default class CardOperation extends PaymentDetailsBase {
    @AllowNull(true)
    @Column
    instrument!: string;
 
    @AllowNull(true)
    @Column(DataType.DECIMAL(20, 2))
    sum!: string;
 
    @AllowNull(true)
    @Column
    currency!: string;
}