API/api.medcify.app/models/ordernotification.js

27 lines
692 B
JavaScript
Raw Permalink Normal View History

2022-09-26 06:11:44 +00:00
'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;
};