Commit bfe4f4ad authored by Jérome Perrin's avatar Jérome Perrin

Set the column size of language column to 255 chars, add an index on

original message column.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5972 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent adc4e914
......@@ -9,9 +9,10 @@ class_file:
</dtml-comment>
<params></params>
CREATE TABLE translation (
language VARCHAR(2),
language VARCHAR(255),
message_context VARCHAR(50),
original_message VARCHAR(255),
translated_message VARCHAR(255),
KEY `message` (`translated_message`)
) TYPE=InnoDB;
\ No newline at end of file
KEY `message` (`translated_message`),
KEY `original_message` (`original_message`)
) TYPE=InnoDB;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment