Skip to content
Snippets Groups Projects
Commit ca278101 authored by Jared Hancock's avatar Jared Hancock
Browse files

InnoDb only allows 255 char key fields

parent fe223543
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@
-- Increment varchar size for various fields... based on feedback from users.
ALTER TABLE `%TABLE_PREFIX%session`
CHANGE `session_id` `session_id` VARCHAR( 256 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';
ALTER TABLE `%TABLE_PREFIX%session`
CHANGE `session_id` `session_id` VARCHAR(255) collate ascii_general_ci NOT NULL DEFAULT '';
ALTER TABLE `%TABLE_PREFIX%ticket`
CHANGE `name` `name` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment