synt_backend
Version:
Synt light-weight node backend service
27 lines (26 loc) • 718 B
JavaScript
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class WebSocketSubscription 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
WebSocketSubscription.belongsTo(models.WebSocketConnection);
}
}
WebSocketSubscription.init(
{
type: DataTypes.ENUM("meeting", "notifications"),
channel: DataTypes.STRING,
},
{
sequelize,
modelName: "WebSocketSubscription",
}
);
return WebSocketSubscription;
};
;