From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../table/tracking/structure_snapshot_indexes.twig | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig (limited to 'srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig') diff --git a/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig b/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig deleted file mode 100644 index a919252..0000000 --- a/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig +++ /dev/null @@ -1,33 +0,0 @@ -

{% trans 'Indexes' %}

- - - - - - - - - - - - - - - - {% for index in indexes %} - - - - - - - - - - - - {% endfor %} - -
{% trans 'Keyname' %}{% trans 'Type' %}{% trans 'Unique' %}{% trans 'Packed' %}{% trans 'Column' %}{% trans 'Cardinality' %}{% trans 'Collation' %}{% trans 'Null' %}{% trans 'Comment' %}
- {{ index['Key_name'] }} - {{ index['Index_type'] }}{{ index['Non_unique'] == 0 ? 'Yes'|trans : 'No'|trans }}{{ index['Packed'] != '' ? 'Yes'|trans : 'No'|trans }}{{ index['Column_name'] }}{{ index['Cardinality'] }}{{ index['Collation'] }}{{ index['Null'] }}{{ index['Comment'] }}
-- cgit