programming_error.html 838 B

1234567891011121314151617
  1. {% extends '500.html' %}
  2. {% block message %}
  3. <p>
  4. A database programming error was detected while processing this request. Common causes include the following:
  5. </p>
  6. <p>
  7. <i class="fa fa-warning"></i> <strong>Database migrations missing</strong> - When upgrading to a new NetBox release, the upgrade script must
  8. be run to apply any new database migrations. You can run migrations manually by executing
  9. <code>python3 manage.py migrate</code> from the command line.
  10. </p>
  11. <p>
  12. <i class="fa fa-warning"></i> <strong>Unsupported PostgreSQL version</strong> - Ensure that PostgreSQL version 9.6 or higher is in use. You
  13. can check this by connecting to the database using NetBox's credentials and issuing a query for
  14. <code>SELECT VERSION()</code>.
  15. </p>
  16. {% endblock %}