{{ 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 %}    );