Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/xampp/phpMyAdmin/templates/columns_definitions/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/phpMyAdmin/templates/columns_definitions/column_indexes.twig
<select name="field_key[{{ column_number }}]"
    id="field_{{ column_number }}_{{ ci - ci_offset }}" data-index="">
    <option value="none_{{ column_number }}">---</option>
    <option value="primary_{{ column_number }}" title="{% trans "Primary" %}"
        {{- column_meta['Key'] is defined and column_meta['Key'] == 'PRI' ? ' selected="selected"' }}>
        PRIMARY
    </option>
    <option value="unique_{{ column_number }}" title="{% trans "Unique" %}"
        {{- column_meta['Key'] is defined and column_meta['Key'] == 'UNI' ? ' selected="selected"' }}>
        UNIQUE
    </option>
    <option value="index_{{ column_number }}" title="{% trans "Index" %}"
        {{- column_meta['Key'] is defined and column_meta['Key'] == 'MUL' ? ' selected="selected"' }}>
        INDEX
    </option>
    <option value="fulltext_{{ column_number }}" title="{% trans "Fulltext" %}"
        {{- column_meta['Key'] is defined and column_meta['Key'] == 'FULLTEXT' ? ' selected="selected"' }}>
        FULLTEXT
    </option>
    <option value="spatial_{{ column_number }}" title="{% trans "Spatial" %}"
        {{- column_meta['Key'] is defined and column_meta['Key'] == 'SPATIAL' ? ' selected="selected"' }}>
        SPATIAL
    </option>
</select>