{% extends 'base.html' %} {% block title %}{{ module_title }} - Manufacturing App{% endblock %} {% block content %}

Initialize Database

Warning: This operation will reset the database
  • All existing data will be permanently deleted
  • Database schema will be recreated from migrations
  • Default data will be loaded
  • This action cannot be undone
Initialization Process:
  1. Create backup of current database
  2. Drop all tables
  3. Run all migrations
  4. Load initial data
  5. Create default admin user
{% csrf_token %}
Initialization Options
Estimated Time: This process may take several minutes depending on the amount of data and number of migrations.
Cancel
{% endblock %} {% block extra_js %} {% endblock %}