Skip to content

Commit

Permalink
Add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgray committed Dec 6, 2024
1 parent f953cb4 commit 4fd7d97
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions posthog/migrations/0528_batchexportrun_expected_records_count.py
Original file line number Diff line number Diff line change
@@ -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,
),
),
]
2 changes: 1 addition & 1 deletion posthog/migrations/max_migration.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0527_project_name_sync
0528_batchexportrun_expected_records_count

0 comments on commit 4fd7d97

Please sign in to comment.