File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ CHANGELOG
104
104
make sure to run ` ALTER TABLE sessions MODIFY sess_lifetime INTEGER UNSIGNED NOT NULL ` to
105
105
update your database.
106
106
* ` PdoSessionHandler ` now precalculates the expiry timestamp in the lifetime column,
107
- make sure to run ` CREATE INDEX EXPIRY ON sessions (sess_lifetime) ` to update your database
107
+ make sure to run ` CREATE INDEX expiry ON sessions (sess_lifetime) ` to update your database
108
108
to speed up garbage collection of expired sessions.
109
109
* added ` SessionHandlerFactory ` to create session handlers with a DSN
110
110
* added ` IpUtils::anonymize() ` to help with GDPR compliance.
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ public function createTable()
207
207
208
208
try {
209
209
$ this ->pdo ->exec ($ sql );
210
- $ this ->pdo ->exec ("CREATE INDEX EXPIRY ON $ this ->table ( $ this ->lifetimeCol ) " );
210
+ $ this ->pdo ->exec ("CREATE INDEX expiry ON $ this ->table ( $ this ->lifetimeCol ) " );
211
211
} catch (\PDOException $ e ) {
212
212
$ this ->rollback ();
213
213
You can’t perform that action at this time.
0 commit comments