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