Skip to content

Commit b59f497

Browse files
authored
MySQL create table documentation incorrect
This page hasnt been updated with this fix symfony#12641 for "Preparing the Database to Store Sessions" causing error: SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'sess_lifetime' at row 1
1 parent 728c3b7 commit b59f497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

session/database.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ MySQL
389389
CREATE TABLE `sessions` (
390390
`sess_id` VARBINARY(128) NOT NULL PRIMARY KEY,
391391
`sess_data` BLOB NOT NULL,
392-
`sess_lifetime` MEDIUMINT NOT NULL,
392+
`sess_lifetime` INTEGER UNSIGNED NOT NULL,
393393
`sess_time` INTEGER UNSIGNED NOT NULL
394394
) COLLATE utf8mb4_bin, ENGINE = InnoDB;
395395

0 commit comments

Comments
 (0)