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