gancio-upstream/server/api/models/eventnotification.js
2019-06-06 23:54:32 +02:00

16 lines
No EOL
399 B
JavaScript

'use strict';
module.exports = (sequelize, DataTypes) => {
const eventNotification = sequelize.define('eventNotification', {
status: {
type: DataTypes.ENUM,
values: ['new', 'sent', 'error'],
defaultValue: 'new',
index: true
}
}, {});
eventNotification.associate = function(models) {
// associations can be defined here
};
return eventNotification;
};