mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
18 lines
406 B
Python
18 lines
406 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("issues", "0013_fix_issue_stored_event_counts"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="grouping",
|
|
name="grouping_key_hash",
|
|
field=models.CharField(default="", max_length=64),
|
|
preserve_default=False,
|
|
),
|
|
]
|