12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports = (sequelize, DataTypes) => {
|
||
|
|
const processing = sequelize.define('processing', {
|
||
|
|
processing: DataTypes.BOOLEAN,
|
||
|
|
}, {});
|
||
|
|
processing.associate = function(models) {
|
||
|
|
// associations can be defined here
|
||
|
|
};
|
||
|
|
return processing;
|
||
|
|
};
|