27 lines
692 B
JavaScript
27 lines
692 B
JavaScript
'use strict';
|
|
const {
|
|
Model
|
|
} = require('sequelize');
|
|
module.exports = (sequelize, DataTypes) => {
|
|
class orderNotification extends Model {
|
|
/**
|
|
* Helper method for defining associations.
|
|
* This method is not a part of Sequelize lifecycle.
|
|
* The `models/index` file will call this method automatically.
|
|
*/
|
|
static associate(models) {
|
|
// define association here
|
|
}
|
|
}
|
|
orderNotification.init({
|
|
storeId: DataTypes.INTEGER,
|
|
messageDetail: DataTypes.TEXT,
|
|
status: DataTypes.INTEGER,
|
|
createdBy: DataTypes.INTEGER,
|
|
updatedBy: DataTypes.INTEGER
|
|
}, {
|
|
sequelize,
|
|
modelName: 'orderNotification',
|
|
});
|
|
return orderNotification;
|
|
}; |