Added indexes to category table

This commit is contained in:
Franck Allimant
2014-01-27 17:11:23 +01:00
parent c5cc6aae76
commit 1f379f60ab
2 changed files with 10 additions and 1 deletions

View File

@@ -12,6 +12,13 @@
<column name="postscriptum" type="LONGVARCHAR" />
<column name="meta_title" size="255" type="VARCHAR" />
<column name="meta_description" type="LONGVARCHAR" />
<column name="meta_keywords" type="LONGVARCHAR" />
<index name="idx_parent">
<index-column name="parent" />
</index>
<index name="idx_parent_position">
<index-column name="parent" />
<index-column name="position" />
</index>
<behavior name="i18n">
<parameter name="i18n_columns" value="title, description, chapo, postscriptum, meta_title, meta_description, meta_keywords" />