diff --git a/resources/templates/table/tracking/structure_snapshot_indexes.twig b/resources/templates/table/tracking/structure_snapshot_indexes.twig index 3e1c41beec..361c691985 100644 --- a/resources/templates/table/tracking/structure_snapshot_indexes.twig +++ b/resources/templates/table/tracking/structure_snapshot_indexes.twig @@ -1,33 +1,40 @@ -

{{ t('Indexes') }}

- - - - - - - - - - - - - - - - {% for index in indexes %} - - - - - - - - - - - - {% endfor %} - -
{{ t('Keyname') }}{{ t('Type') }}{{ t('Unique') }}{{ t('Packed') }}{{ t('Column') }}{{ t('Cardinality') }}{{ t('Collation') }}{{ t('Null') }}{{ t('Comment') }}
- {{ index['Key_name'] }} - {{ index['Index_type'] }}{{ index['Non_unique'] == 0 ? t('Yes') : t('No') }}{{ index['Packed'] != '' ? t('Yes') : t('No') }}{{ index['Column_name'] }}{{ index['Cardinality'] }}{{ index['Collation'] }}{{ index['Null'] }}{{ index['Comment'] }}
+
+
+ {{ t('Indexes') }} + {{ show_mysql_docu('optimizing-database-structure') }} +
+
+ + + + + + + + + + + + + + + + {% for index in indexes %} + + + + + + + + + + + + {% endfor %} + +
{{ t('Keyname') }}{{ t('Type') }}{{ t('Unique') }}{{ t('Packed') }}{{ t('Column') }}{{ t('Cardinality') }}{{ t('Collation') }}{{ t('Null') }}{{ t('Comment') }}
+ {{ index['Key_name'] }} + {{ index['Index_type'] }}{{ index['Non_unique'] == 0 ? t('Yes') : t('No') }}{{ index['Packed'] != '' ? t('Yes') : t('No') }}{{ index['Column_name'] }}{{ index['Cardinality'] }}{{ index['Collation'] }}{{ index['Null'] }}{{ index['Comment'] }}
+
+