{% extends "massmigration/base.html" %} {% block content %}

Cancel/Delete Migration

{{migration.key}}

{{migration.description}}

This will delete the record for the migration in the database.

Once you have deleted the record, you will be able to run the migration again.

If your migration might still be running...

For simple migrations, deleting the migration record does not interrupt the processing of the migration on the backend. If you need to interrupt the processing you should stop the backend yourself.

For mapper migrations, deleting the migration record will cause the migration to do a best effort to prevent any further operations being performed on the queryset, even if the backend is still trying to perform the processing. However, the prevention of operations is not guaranteed, so if you absolutely need to halt processing you should stop the backend yourself.

For mapper migrations which have errored, the backend may still be trying to process the queryset. Again, the migration will try to prevent the operations being performed, but this is not guaranteed.

{% csrf_token %}
{% endblock %}