diff --git a/latest_migrations.manifest b/latest_migrations.manifest index 90046f4109b84..997326897c865 100644 --- a/latest_migrations.manifest +++ b/latest_migrations.manifest @@ -5,7 +5,7 @@ contenttypes: 0002_remove_content_type_name ee: 0016_rolemembership_organization_member otp_static: 0002_throttling otp_totp: 0002_auto_20190420_0723 -posthog: 0502_team_session_recording_url_blocklist_config +posthog: 0503_productintent_activated_at_and_more sessions: 0001_initial social_django: 0010_uid_db_index two_factor: 0007_auto_20201201_1019 diff --git a/posthog/migrations/0503_productintent_activated_at_and_more.py b/posthog/migrations/0503_productintent_activated_at_and_more.py new file mode 100644 index 0000000000000..b182787371ae9 --- /dev/null +++ b/posthog/migrations/0503_productintent_activated_at_and_more.py @@ -0,0 +1,30 @@ +# Generated by Django 4.2.15 on 2024-10-30 03:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("posthog", "0502_team_session_recording_url_blocklist_config"), + ] + + operations = [ + migrations.AddField( + model_name="productintent", + name="activated_at", + field=models.DateTimeField( + blank=True, + help_text="The date the org completed activation for the product. Generally only used to know if we should continue updating the product_intent row.", + null=True, + ), + ), + migrations.AddField( + model_name="productintent", + name="activation_last_checked_at", + field=models.DateTimeField( + blank=True, + help_text="The date we last checked if the org had completed activation for the product.", + null=True, + ), + ), + ]