mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
module.exports = (sequelize, DataTypes) => {
|
|
return sequelize.define('session', {
|
|
id: { type: DataTypes.TEXT, primaryKey: true },
|
|
maxAge: DataTypes.BIGINT,
|
|
data: DataTypes.JSONB,
|
|
})
|
|
}
|