-- { "one_file": true } Documentation for DB

Tables

{% for t in tables %} {{ t.table_name }}{% if t.comment %} - {{ unquote(t.comment, True) }}{% endif %}
{% endfor %}
{% for t in tables %}

{{ t.table_name }}

{% if t.primary_key %}Primary Key(s):{{ ", ".join(t.primary_key) }}{% endif %} {% if t.unique %}

Unique Constraints

{% endif %} {% if t.foreign_keys %}

Foreign Keys

{% endif %}

Columns

{% for c in t.columns.values() %} {% endfor %}
Name Type Default Documentation
{{ c.name }}{{ "*" if c.name in t.primary_key }} {{ c.type }} {{ c.default }} {% if c.comment %}{{ unquote(c.comment, True) }}{% endif %}
{% endfor %}