Translated using Weblate (Indonesian)
[phpmyadmin.git] / templates / columns_definitions / column_indexes.twig
blob398022997a96c9e6eabbff7fa8ae8fbf6a80eb37
1 <select name="field_key[{{ column_number }}]"
2     id="field_{{ column_number }}_{{ ci - ci_offset }}" data-index="">
3     <option value="none_{{ column_number }}">---</option>
4     <option value="primary_{{ column_number }}" title="{% trans "Primary" %}"
5         {{- column_meta['Key'] is defined and column_meta['Key'] == 'PRI' ? ' selected="selected"' }}>
6         PRIMARY
7     </option>
8     <option value="unique_{{ column_number }}" title="{% trans "Unique" %}"
9         {{- column_meta['Key'] is defined and column_meta['Key'] == 'UNI' ? ' selected="selected"' }}>
10         UNIQUE
11     </option>
12     <option value="index_{{ column_number }}" title="{% trans "Index" %}"
13         {{- column_meta['Key'] is defined and column_meta['Key'] == 'MUL' ? ' selected="selected"' }}>
14         INDEX
15     </option>
16     <option value="fulltext_{{ column_number }}" title="{% trans "Fulltext" %}"
17         {{- column_meta['Key'] is defined and column_meta['Key'] == 'FULLTEXT' ? ' selected="selected"' }}>
18         FULLTEXT
19     </option>
20     <option value="spatial_{{ column_number }}" title="{% trans "Spatial" %}"
21         {{- column_meta['Key'] is defined and column_meta['Key'] == 'SPATIAL' ? ' selected="selected"' }}>
22         SPATIAL
23     </option>
24 </select>