Files
bugsink/issues/migrations/0018_issue_is_deleted.py
Klaas van Schelven e5dbeae514 Issue.delete_deferred(): first version (WIP)
Implemented using a batch-wise dependency-scanner in delayed
(snappea) style.

* no tests yet.
* no real point-of-entry in the (regular, non-admin) UI yet.
* no hiding of Issues which are delete-in-progress from the UI
* file storage not yet cleaned up
* project issue counts not yet updated
* dangling tag values: no cleanup mechanism yet.

See #50
2025-06-27 12:52:59 +02:00

17 lines
364 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("issues", "0017_issue_list_indexes_must_start_with_project"),
]
operations = [
migrations.AddField(
model_name="issue",
name="is_deleted",
field=models.BooleanField(default=False),
),
]