Files
bugsink/projects/migrations/0006_initial_ingested_count_value.py
T

28 lines
922 B
Python

# Generated by Django 4.2.13 on 2024-07-16 13:43
from django.db import migrations
def initial_ingested_count_value(apps, schema_editor):
Project = apps.get_model('projects', 'Project')
for project in Project.objects.all():
# this is the best guess we have; which should be good enough to avoid surprises on the small installed base.
project.ingested_event_count = project.event_set.count()
project.save()
class Migration(migrations.Migration):
dependencies = [
('events', '0010_rename_ingest_order_event_digest_order_and_more'),
('ingest', '0001_set_sqlite_wal'),
('issues', '0005_rename_ingest_order_issue_digest_order_and_more'),
('projects', '0005_project_ingested_event_count'),
('releases', '0001_initial'),
('teams', '0002_initial'),
]
operations = [
migrations.RunPython(initial_ingested_count_value),
]