diff --git a/posthog/migrations/0528_batchexportrun_expected_records_count.py b/posthog/migrations/0528_batchexportrun_expected_records_count.py new file mode 100644 index 0000000000000..64b489260346e --- /dev/null +++ b/posthog/migrations/0528_batchexportrun_expected_records_count.py @@ -0,0 +1,20 @@ +# Generated by Django 4.2.15 on 2024-12-06 12:14 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("posthog", "0527_project_name_sync"), + ] + + operations = [ + migrations.AddField( + model_name="batchexportrun", + name="expected_records_count", + field=models.IntegerField( + help_text="The total count of records that we expect to be exported in this BatchExportRun. This is updated automatically post-batch export by a monitoring job.", + null=True, + ), + ), + ] diff --git a/posthog/migrations/max_migration.txt b/posthog/migrations/max_migration.txt index 4dd4a8fb39bbc..cf64b45a82570 100644 --- a/posthog/migrations/max_migration.txt +++ b/posthog/migrations/max_migration.txt @@ -1 +1 @@ -0527_project_name_sync +0528_batchexportrun_expected_records_count