mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
51 lines
1 KiB
JavaScript
51 lines
1 KiB
JavaScript
"use strict"
|
|
const { Model } = require("sequelize")
|
|
module.exports = (sequelize, DataTypes) => {
|
|
class Pin 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) {
|
|
Pin.belongsTo(models.User, {
|
|
as: "pinnedBy"
|
|
})
|
|
Pin.belongsTo(models.Message, {
|
|
as: "message"
|
|
})
|
|
Pin.belongsTo(models.Chat, {
|
|
as: "chat"
|
|
})
|
|
}
|
|
}
|
|
Pin.init(
|
|
{
|
|
pinnedById: {
|
|
type: DataTypes.BIGINT,
|
|
allowNull: false
|
|
},
|
|
messageId: {
|
|
type: DataTypes.BIGINT,
|
|
allowNull: false
|
|
},
|
|
chatId: {
|
|
type: DataTypes.BIGINT,
|
|
allowNull: false
|
|
},
|
|
createdAt: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false
|
|
},
|
|
updatedAt: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false
|
|
}
|
|
},
|
|
{
|
|
sequelize,
|
|
modelName: "Pin"
|
|
}
|
|
)
|
|
return Pin
|
|
}
|