Add processing for upload dlock
This commit is contained in:
11
models/processing.js
Normal file
11
models/processing.js
Normal file
@@ -0,0 +1,11 @@
|
||||
'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;
|
||||
};
|
||||
Reference in New Issue
Block a user