/usr/share/phpmyadmin/templates/table/operations
NameSizeModeActions
index.twig216290644editdlrm
view.twig15380644editdlrm
Edit: /usr/share/phpmyadmin/templates/table/operations/index.twig (21629B)
{% if not hide_order_table %}
{{ get_hidden_inputs(db, table) }}
{% trans 'Alter table order by' %}
{% trans %}(singly){% context %}Alter table order by a single field.{% endtrans %}
{% endif %}
{{ get_hidden_inputs(db, table) }}
{% trans 'Move table to (database.table)' %}
{% if database_list is not empty %} {% else %} {% endif %}
.
{{ get_hidden_inputs(db, table) }} {% if has_auto_increment %} {% endif %}
{% trans 'Table options' %}
{% if has_pack_keys %}
{% endif %} {% if has_checksum_and_delay_key_write %}
{% endif %} {% if has_transactional_and_page_checksum %}
{% endif %} {% if has_auto_increment %}
{% endif %} {% if row_formats is not empty %}
{% endif %}
{{ get_hidden_inputs(db, table) }}
{% trans 'Copy table to (database.table)' %}
{% if database_list is not empty %} {% else %} {% endif %}
.
{% if has_foreign_keys %}
{% endif %}
{% trans 'Table maintenance' %}
{% if not is_system_schema %}
{% trans 'Delete data or table' %}
    {% if not is_view %}
  • {{ link_or_button( url('/sql', url_params|merge({ 'sql_query': 'TRUNCATE TABLE ' ~ backquote(table), 'goto': url('/table/structure'), 'reload': true, 'message_to_show': 'Table %s has been emptied.'|trans|format(table)|e })), 'Empty the table (TRUNCATE)'|trans, { 'id': 'truncate_tbl_anchor', 'class': 'text-danger ajax' } ) }} {{ show_mysql_docu('TRUNCATE_TABLE') }}
  • {% endif %}
  • {{ link_or_button( url('/sql', url_params|merge({ 'sql_query': 'DROP TABLE ' ~ backquote(table), 'goto': url('/database/operations'), 'reload': true, 'purge': true, 'message_to_show': is_view ? 'View %s has been dropped.'|trans|format(table)|e : 'Table %s has been dropped.'|trans|format(table)|e, 'table': table })), 'Delete the table (DROP)'|trans, { 'id': 'drop_tbl_anchor', 'class': 'text-danger ajax' } ) }} {{ show_mysql_docu('DROP_TABLE') }}
{% endif %} {% if partitions is not empty %}
{{ get_hidden_inputs(db, table) }}
{% trans 'Partition maintenance' %} {{ show_mysql_docu('partitioning_maintenance') }}
{% for value, description in partitions_choices %}
{% endfor %}
{% endif %} {% if foreigners is not empty %}
{% trans 'Check referential integrity' %}
{% endif %}