import _sequelize from 'sequelize'; const { Model, Sequelize } = _sequelize; export default class legalactionitems extends Model { static init(sequelize, DataTypes) { super.init({ ID: { autoIncrement: true, type: DataTypes.INTEGER, allowNull: false, primaryKey: true }, LegalActionId: { type: DataTypes.INTEGER, allowNull: true }, DataType: { type: DataTypes.STRING(50), allowNull: true }, Title: { type: DataTypes.TEXT, allowNull: true }, PropertyName: { type: DataTypes.STRING(50), allowNull: true } }, { sequelize, tableName: 'legalactionitems', hasTrigger: true, timestamps: false, indexes: [ { name: "PRIMARY", unique: true, using: "BTREE", fields: [ { name: "ID" }, ] }, ] }); return legalactionitems; } }