{% extends "base_table.html" %} {% block structure_tab_class %} active{% endblock %} {% block inner_content %}
Column | Data type | {% if not is_view %}Allow null | Primary key | Actions | {% endif %}
---|---|---|---|---|
{{ column.name }} |
{{ column.data_type }} |
{% if not is_view %}
{% if column.null %}✓{% endif %} | {% if column.primary_key %}✓{% endif %} | {% if dataset.is_readonly %} read-only {% else %} Rename | Drop {% endif %} | {% endif %}
Column | Destination |
---|---|
{{ foreign_key.column }} |
{{ foreign_key.dest_table }}.{{ foreign_key.dest_column }} |
Name | Columns | Unique | SQL | Drop? |
---|---|---|---|---|
{{ index.name }} |
{% if index.columns|length == 1 %}
{{ index.columns[0] }}
{% else %}
|
{% if index.unique %}✓{% endif %} | SQL | {% if dataset.is_readonly %} read-only {% else %} Drop {% endif %} |
Name | SQL | Drop? |
---|---|---|
{{ trigger.name }} | SQL | {% if dataset.is_readonly %} read-only {% else %} Drop {% endif %} |