{% extends "base.html" %} {% block title %}Database — Cairn Dashboard{% endblock %} {% block view_title %}Database{% endblock %} {% block content %}

Database

Store schema as a relationship graph — node size encodes row count, solid edges are declared foreign keys, dashed edges are *_id references implied by column naming. Select a node for the table's columns and links.

{% if schema.skipped %}

{{ schema.skipped | length }} table(s) not shown — {% for s in schema.skipped %}{{ s.name }}{% if not loop.last %}, {% endif %}{% endfor %} ({{ schema.skipped[-1].reason }})

{% endif %} {% if schema.tables %}
{% else %}

No tables in this store yet — run cairn build first.

{% endif %}
{% endblock %} {% block scripts %} {% if schema.tables %} {% endif %} {% endblock %}