You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
507 B
15 lines
507 B
/**
|
|
* The database install script changed to support installation on cluster
|
|
* servers. No significant changes need to be rolled for continuous updaters
|
|
*
|
|
* @version v1.7.1
|
|
* @signature 32de1766d56e43215041fa982dcb465e
|
|
*/
|
|
|
|
ALTER TABLE `%TABLE_PREFIX%session`
|
|
CHANGE `session_id` `session_id` VARCHAR(255) collate ascii_general_ci,
|
|
CHANGE `session_data` `session_data` BLOB;
|
|
|
|
-- update schema signature
|
|
UPDATE `%TABLE_PREFIX%config`
|
|
SET `schema_signature`='32de1766d56e43215041fa982dcb465e';
|