{% extends 'devtools/base.html' %} {% load devtools_extras %} {% block title %}Schema - DevTools{% endblock %} {% block content %}
| 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 %} |