mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-20 12:29:57 -06:00
Implemented using a batch-wise dependency-scanner in delayed (snappea) style. * no real point-of-entry in the (regular, non-admin) UI yet. * no hiding of Projects which are delete-in-progress from the UI * lack of DRY * some unnessary work (needed in the Issue-context, but not here) is still being done. See #50
19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 4.2.21 on 2025-07-03 13:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("projects", "0011_fill_stored_event_count"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="project",
|
|
name="is_deleted",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|