{% trans 'Database comment:' %} {{ comment }}
{% endif %}
{% trans 'Table comments:' %} {{ table.comment }}
{% endif %}{% trans 'Column' %} | {% trans 'Type' %} | {% trans 'Null' %} | {% trans 'Default' %} | {% if table.has_relation %}{% trans 'Links to' %} | {% endif %}{% trans 'Comments' %} | {% if table.has_mime %}{% trans 'Media type' %} | {% endif %}
---|---|---|---|---|---|---|
{{ column.name }} {% if column.has_primary_key %} ({% trans 'Primary' %}) {% endif %} | {{ column.print_type }} | {{ column.is_nullable ? 'Yes'|trans : 'No'|trans }} | {% if column.default is null and column.is_nullable %} NULL {% else %} {{ column.default }} {% endif %} | {% if table.has_relation %}{{ column.relation }} | {% endif %}{{ column.comment }} | {% if table.has_mime %}{{ column.mime }} | {% endif %}
{% trans 'Keyname' %} | {% trans 'Type' %} | {% trans 'Unique' %} | {% trans 'Packed' %} | {% trans 'Column' %} | {% trans 'Cardinality' %} | {% trans 'Collation' %} | {% trans 'Null' %} | {% trans 'Comment' %} |
---|---|---|---|---|---|---|---|---|
{{ index.getName() }} | {{ index.getType()|default(index.getChoice()) }} | {{ index.isUnique() ? 'Yes'|trans : 'No'|trans }} | {{ index.isPacked()|raw }} | {% for column in index.getColumns() %} {% if column.getSeqInIndex() > 1 %}|||||
{{ column.getName() }} {% if column.getSubPart() is not empty %} ({{ column.getSubPart() }}) {% endif %} | {{ column.getCardinality() }} | {{ column.getCollation() }} | {{ column.getNull(true) }} | {% if column.getSeqInIndex() == 1 %}{{ index.getComments() }} | {% endif %}
{% trans 'No index defined!' %}
{% endif %}