Files
old-crm-integration/models/processing.js

12 lines
290 B
JavaScript
Raw Normal View History

2019-07-25 15:36:49 +02:00
'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;
};