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 30 | 8x 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;
} |