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