mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
9 lines
No EOL
221 B
JavaScript
9 lines
No EOL
221 B
JavaScript
module.exports = (sequelize, DataTypes) =>
|
|
sequelize.define('event_notification', {
|
|
status: {
|
|
type: DataTypes.ENUM,
|
|
values: ['new', 'sent', 'error', 'sending'],
|
|
defaultValue: 'new',
|
|
index: true
|
|
}
|
|
}) |