You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
4 years ago
|
import _sequelize from 'sequelize';
|
||
|
const { Model, Sequelize } = _sequelize;
|
||
|
|
||
|
export default class inspectionlegalactionitems extends Model {
|
||
|
static init(sequelize, DataTypes) {
|
||
|
super.init({
|
||
|
ID: {
|
||
|
autoIncrement: true,
|
||
|
type: DataTypes.INTEGER,
|
||
|
allowNull: false,
|
||
|
primaryKey: true
|
||
|
},
|
||
|
InspectionId: {
|
||
|
type: DataTypes.INTEGER,
|
||
|
allowNull: true
|
||
|
},
|
||
|
LegalActionId: {
|
||
|
type: DataTypes.INTEGER,
|
||
|
allowNull: true
|
||
|
},
|
||
|
PropertyName: {
|
||
|
type: DataTypes.STRING(50),
|
||
|
allowNull: true
|
||
|
},
|
||
|
Value: {
|
||
|
type: DataTypes.TEXT,
|
||
|
allowNull: true
|
||
|
},
|
||
|
Archive: {
|
||
|
type: DataTypes.TINYINT,
|
||
|
allowNull: false,
|
||
|
defaultValue: 0
|
||
|
},
|
||
|
InsertDate: {
|
||
|
type: DataTypes.DATE,
|
||
|
allowNull: true
|
||
|
}
|
||
|
}, {
|
||
|
sequelize,
|
||
|
tableName: 'inspectionlegalactionitems',
|
||
|
hasTrigger: true,
|
||
|
timestamps: false,
|
||
|
indexes: [
|
||
|
{
|
||
|
name: "PRIMARY",
|
||
|
unique: true,
|
||
|
using: "BTREE",
|
||
|
fields: [
|
||
|
{ name: "ID" },
|
||
|
]
|
||
|
},
|
||
|
]
|
||
|
});
|
||
|
return inspectionlegalactionitems;
|
||
|
}
|
||
|
}
|