synt_backend
Version:
Synt light-weight node backend service
28 lines (27 loc) • 700 B
JavaScript
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class IncidentComment 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
IncidentComment.belongsTo(models.Incident);
IncidentComment.belongsTo(models.User);
}
}
IncidentComment.init(
{
message: DataTypes.TEXT,
user_name: DataTypes.STRING,
},
{
sequelize,
modelName: "IncidentComment",
}
);
return IncidentComment;
};
;