/usr/share/phpmyadmin/templates/table/structure
NameSizeModeActions
display_partitions.twig101920644editdlrm
display_structure.twig276790644editdlrm
display_table_stats.twig75830644editdlrm
drop_confirm.twig7800644editdlrm
partition_definition_form.twig5420644editdlrm
primary.twig9050644editdlrm
Edit: /usr/share/phpmyadmin/templates/table/structure/primary.twig (905B)
{{ get_hidden_inputs({'db': db, 'table': table, 'selected': selected}) }}
{% trans 'Do you really want to execute the following query?' %} ALTER TABLE {{ backquote(table) }}
  DROP PRIMARY KEY,
   ADD PRIMARY KEY(
{% for field in selected %}      {{ backquote(field) }} {%- if not loop.last %},{% endif %}
{% endfor %}    );