synt_backend
Version:
Synt light-weight node backend service
30 lines (29 loc) • 738 B
JavaScript
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class Notification 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
Notification.belongsTo(models.User);
Notification.belongsTo(models.VME);
}
}
Notification.init(
{
title: DataTypes.STRING,
description: DataTypes.TEXT,
path: DataTypes.STRING,
seen_at: DataTypes.DATE,
},
{
sequelize,
modelName: "Notification",
}
);
return Notification;
};
;