{% extends 'devtools/base.html' %} {% load devtools_extras %} {% block title %}Schema - DevTools{% endblock %} {% block content %}

Database schema

{{ tables|length }}
Table{{ tables|length|pluralize }}
{% for table in tables %}{{ table.columns|length }}{% if not forloop.last %} + {% endif %}{% endfor %}
Total columns
Auto
Automatic analysis
Live
Live data
{% if tables %}
{% for table in tables %}

Table structure
{% for column in table.columns %} {% endfor %}
Nom Type Null Default Extra
{{ column.name }} {% if 'id' in column.name or 'pk' in column.name %} {% endif %} {% if '_id' in column.name %} {% endif %} {{ column.type }} {% if column.nullable %} YES {% else %} NO {% endif %} {% if column.default %} {{ column.default }} {% else %} NULL {% endif %} {% if column.extra %} {{ column.extra }} {% else %} - {% endif %}
Data preview
{% endfor %}
{% else %}
No table found in the database.
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}