mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
86 lines
1.8 KiB
JavaScript
86 lines
1.8 KiB
JavaScript
|
"use strict"
|
||
|
const { Model } = require("sequelize")
|
||
|
module.exports = (sequelize, DataTypes) => {
|
||
|
class Message 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.
|
||
|
*/
|
||
|
// eslint-disable-next-line no-unused-vars
|
||
|
static associate(models) {
|
||
|
Message.belongsTo(models.User, {
|
||
|
as: "user"
|
||
|
})
|
||
|
Message.belongsTo(models.Chat, {
|
||
|
as: "chat"
|
||
|
})
|
||
|
Message.belongsTo(models.Message, {
|
||
|
as: "reply"
|
||
|
})
|
||
|
Message.hasMany(models.Attachment, {
|
||
|
as: "attachments",
|
||
|
foreignKey: "messageId"
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
Message.init(
|
||
|
{
|
||
|
chatId: {
|
||
|
type: DataTypes.BIGINT,
|
||
|
allowNull: false
|
||
|
},
|
||
|
userId: {
|
||
|
type: DataTypes.BIGINT,
|
||
|
allowNull: false
|
||
|
},
|
||
|
content: {
|
||
|
type: DataTypes.TEXT,
|
||
|
allowNull: false
|
||
|
},
|
||
|
type: {
|
||
|
type: DataTypes.ENUM([
|
||
|
"message",
|
||
|
"leave",
|
||
|
"join",
|
||
|
"pin",
|
||
|
"administrator",
|
||
|
"rename",
|
||
|
"system"
|
||
|
])
|
||
|
},
|
||
|
embeds: {
|
||
|
type: DataTypes.JSON,
|
||
|
defaultValue: [],
|
||
|
allowNull: false
|
||
|
},
|
||
|
edited: {
|
||
|
type: DataTypes.BOOLEAN,
|
||
|
defaultValue: false,
|
||
|
allowNull: false
|
||
|
},
|
||
|
editedAt: {
|
||
|
type: DataTypes.DATE,
|
||
|
allowNull: true
|
||
|
},
|
||
|
createdAt: {
|
||
|
allowNull: false,
|
||
|
type: DataTypes.DATE
|
||
|
},
|
||
|
updatedAt: {
|
||
|
allowNull: false,
|
||
|
type: DataTypes.DATE
|
||
|
},
|
||
|
replyId: {
|
||
|
type: DataTypes.BIGINT,
|
||
|
allowNull: true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
sequelize,
|
||
|
modelName: "Message"
|
||
|
}
|
||
|
)
|
||
|
return Message
|
||
|
}
|