connect-session-sequelize
connect-session-sequelize copied to clipboard
Sequelize SessionStore for Express/Connect
Hi, I'm trying to use connect-session-sequelize to store the session on a mssql server. The insert works fine, the session id is stored in my database but when i refresh...
Changes have been made to implement the ability to use JSON fields to store data in the database. It also solves the problem of converting data when saving and reading,...
Hi, My query and session return to the client is working normally however there is no record being created in the database. Log from my console: `Executing (default): INSERT INTO...
Bumps [cookie](https://github.com/jshttp/cookie) to 0.7.2 and updates ancestor dependency [express-session](https://github.com/expressjs/session). These dependencies need to be updated together. Updates `cookie` from 0.4.1 to 0.7.2 Release notes Sourced from cookie's releases. v0.7.2 Fixed...
See #152 for more info. I used "unknown" since I do not think I'll need to export the whole model to the user. Another possible solution more in line with...
Hi, a quick typescript heads-up: I think the return type of the sync() method on the SequelizeStore class should be a promise. The sequelize docs show that syncing a model...
### Issue - In using sequelize and postgres with read replica as the database. The query of session by sessionId sometimes would be empty. - The cause was that the...
# To Users: You can use this PR with updated code by using the below in your `package.json` file: `"@fixhq/connect-session-sequelize": "8.0.0"` It should be a drop-in replacement Warning: You should...
In Sequelize, the model key/class name can be different than the table name. ```js export default class SessionModel extends Model { declare sid: string; declare expires: Date; declare data: string;...