{% extends "base.html" %} {% block title %}Data Model{% endblock %} {% block heading %}Data Model Designer{% endblock %} {% block content %}
Design your normalized raw storage model — Bronze ingestion targets through to Gold star schema.
{{ desc }}
{% if layer_tables %}{{ t.name }}
{% endfor %} {% if layer_tables|length > 3 %}+{{ layer_tables|length - 3 }} more
{% endif %}{{ table.description }}
{% endif %} {% if table.columns %}| Column | Type | Source | Flags | Description |
|---|---|---|---|---|
| {% if col.is_primary_key %} 🔑 {% elif col.is_foreign_key %} 🔗 {% endif %} {{ col.name }} | {{ col.data_type }} {% if not col.nullable %}*{% endif %} | {{ col.source_column or col.name }} |
{% if col.pii %}PII{% endif %}
{% if col.is_foreign_key and col.references_table %}
FK
{% endif %}
|
{{ col.description or "—" }} |
No columns yet —
{{ table.name }}Add tables to build your normalized raw storage model.