Skip to content
Snippets Groups Projects
Commit 8ebece61 authored by Laurent's avatar Laurent
Browse files

dev #80530 fix patch : fulltext on latin1 character set

parent 2f376a89
Branches
Tags
4 merge requests!2869Master,!2854Hotline#80953 story nanook 41 caracteres accentues etalon,!2853Dev#80530 minsoc indexation des resumes indexation tous champs,!2842Dev#80530 minsoc indexation des resumes indexation tous champs
Pipeline #5045 failed with stage
in 47 minutes and 23 seconds
......@@ -3,5 +3,5 @@ $adapter = Zend_Db_Table_Abstract::getDefaultAdapter();
try {
$adapter->query('insert into variables(clef, commentaire, type_champ, groupe, ordre, verrou) values("other_index_fields", "Listes des champs à indexer comme termes supplémentaires, sous la forme [zone]$[champ] séparés par des points virgules. Ex: 300$a;303$a", 1, 5, 2, "checked")');
$adapter->query("alter table notices add column other_terms text not null, add FULLTEXT KEY `other_terms` (`other_terms`)");
$adapter->query("alter table notices add column other_terms text character set latin1 not null default '', add FULLTEXT KEY `other_terms` (`other_terms`)");
} catch(Exception $e) {}
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