import { Column, DataType, Model, Table } from 'sequelize-typescript'; @Table export class ErrorLog extends Model { @Column(DataType.TEXT) estimatedValue: string; @Column(DataType.TEXT) fixValue: string; @Column({ type: DataType.TEXT, allowNull: true }) comment: string; }