Bug 28489: Modify sessions.a_session from longtext to longblob (kohastructure.sql)
Signed-off-by: Petro Vashchuk <stalkernoid@gmail.com> Signed-off-by: Andrew Nugged <nugged@gmail.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
d2cadb99e9
commit
a40188a0b5
1 changed files with 1 additions and 1 deletions
|
@ -4580,7 +4580,7 @@ DROP TABLE IF EXISTS `sessions`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `sessions` (
|
||||
`id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`a_session` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`a_session` longblob NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
|
Loading…
Reference in a new issue