sess_data has been changed to mediumtext a while ago via update

This commit is contained in:
Mario
2025-05-07 12:33:17 +00:00
parent ac5d22d514
commit 6ed56f9996

View File

@@ -1078,7 +1078,7 @@ CREATE TABLE IF NOT EXISTS `register` (
CREATE TABLE IF NOT EXISTS `session` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`sid` char(191) NOT NULL DEFAULT '',
`sess_data` text NOT NULL,
`sess_data` mediumtext NOT NULL,
`expire` bigint(20) unsigned NOT NULL DEFAULT 0 ,
PRIMARY KEY (`id`),
KEY `sid` (`sid`),