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