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
358 B
Python
17 lines
358 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("issues", "0018_issue_is_deleted"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="grouping",
|
|
name="grouping_key_hash",
|
|
field=models.CharField(max_length=64, null=True),
|
|
),
|
|
]
|