{# Flask partial: table columns list #}
{{ table_name }}
{% if not columns %} {% else %}| Name | Type | Not Null | Default | PK |
|---|---|---|---|---|
| {{ col.name or '' }} | {{ col.type or '' }} | {{ 'Yes' if col.notnull else 'No' }} | {{ col.dflt_value if col.dflt_value is not none else '' }} | {{ 'Yes' if col.pk else 'No' }} |