mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
27 lines
626 B
JavaScript
27 lines
626 B
JavaScript
"use strict"
|
|
const { Model } = require("sequelize")
|
|
module.exports = (sequelize, DataTypes) => {
|
|
class Session 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
|
|
}
|
|
}
|
|
Session.init(
|
|
{
|
|
session: DataTypes.STRING,
|
|
other: DataTypes.JSON,
|
|
userId: DataTypes.BIGINT,
|
|
expiredAt: DataTypes.DATE
|
|
},
|
|
{
|
|
sequelize,
|
|
modelName: "Session"
|
|
}
|
|
)
|
|
return Session
|
|
}
|