Data Models DDL and ERDs
{% for model in models %}
- {{ model.pretty }}
{% for version in versions|default(model.versions) %}
- {{ version.name|upper }}
{% if erd %}
- ERD
{% endif %}
{% if ddl %}
- Creation DDL
{% for dialect in dialects %}
- {{ dialect.pretty }}
- Full DDL
- Tables Only
- Constraints Only
- Indexes Only
{% endfor %}
{% endif %}
{% if drop %}
- Drop DDL
{% for dialect in dialects %}
- {{ dialect.pretty }}
- Full Drop DDL
- Drop Tables Only
- Drop Constraints Only
- Drop Indexes Only
{% endfor %}
{% endif %}
{% if delete %}
- Delete Data
{% for dialect in dialects %}
- {{ dialect.pretty }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}