Edit Table
Hit the edit table button if you want to perform one of the following
Rename the table
{% if dialect == 'postgresql' %}
Change the schema which the table is on
{% elif dialect == 'mysql' %}
Change the character set used in the table
{% endif %}
{% include 'tbl/tbl_ops_forms.html' with form=tbl_edit_form form_name='tbl_edit_form' %}
{% if dialect == 'postgresql' %}
Vacuum Table
To recover or reuse disk space occupied by updated or deleted rows.
To update data statistics used by the PostgreSQL query planner.
To protect against loss of very old data due to transaction ID wraparound.
{% include 'tbl/tbl_ops_forms.html' with form=tbl_vacuum_form form_name='tbl_vacuum_form' %}
Analyze Table
ANALYZE collects statistics about the contents of tables in the database, and stores the results in a system catalog.
Subsequently, the query planner uses these statistics to help determine the most efficient execution plans for queries.
{% csrf_token %}
Reindex Table
REINDEX rebuilds an index using the data stored in the index's table, replacing the old copy of the index.
{% csrf_token %}
{% endif %}