/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const EmailSendLog = sequelize.define("emailSendLog", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "email_send_log_id_uindex" }, projectCorrelationId: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "project_correlation_id", autoIncrement: false }, toPepUserId: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "to_pep_user_id", autoIncrement: false }, by: { type: DataTypes.STRING, allowNull: true, defaultValue: null, comment: null, primaryKey: false, field: "by", autoIncrement: false }, time: { type: DataTypes.DATE, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "time", autoIncrement: false } }, { tableName: "email_send_log", comment: "", indexes: [] }); dc.models.EmailSendLog = EmailSendLog; return EmailSendLog; };