mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
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
17 lines
364 B
Python
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),
|
|
),
|
|
]
|