Skip to content
Snippets Groups Projects
Commit 427fabc9 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: bad length of field with index in utf8

parent ca85e8b5
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,8 @@ DELETE from llx_const where name='USER_PASSWORD_GENERATED' and value='default';
ALTER TABLE llx_boxes_def DROP INDEX uk_boxes_def;
ALTER TABLE llx_boxes_def MODIFY note varchar(255);
ALTER TABLE llx_boxes_def MODIFY file varchar(200) NOT NULL;
ALTER TABLE llx_boxes_def MODIFY note varchar(130);
ALTER TABLE llx_boxes_def ADD UNIQUE INDEX uk_boxes_def (file, entity, note);
-- Fix bad old data
......
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