13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
|
|
'use strict';
|
||
|
|
module.exports = (sequelize, DataTypes) => {
|
||
|
|
const comment = sequelize.define('comment', {
|
||
|
|
activitypub_id: DataTypes.BIGINT,
|
||
|
|
data: DataTypes.JSON
|
||
|
|
}, {});
|
||
|
|
comment.associate = function(models) {
|
||
|
|
comment.belongsTo(models.event)
|
||
|
|
// Event.hasMany(Comment)
|
||
|
|
// associations can be defined here
|
||
|
|
};
|
||
|
|
return comment;
|
||
|
|
};
|