diff --git a/posthog/migrations/0374_alter_survey_type.py b/posthog/migrations/0374_alter_survey_type.py new file mode 100644 index 0000000000000..37f9de1fb6dd0 --- /dev/null +++ b/posthog/migrations/0374_alter_survey_type.py @@ -0,0 +1,27 @@ +# Generated by Django 3.2.19 on 2023-12-09 19:28 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("posthog", "0373_externaldataschema"), + ] + + operations = [ + migrations.AlterField( + model_name="survey", + name="type", + field=models.CharField( + choices=[ + ("popover", "popover"), + ("widget", "widget"), + ("button", "button"), + ("email", "email"), + ("full_screen", "full screen"), + ("api", "api"), + ], + max_length=40, + ), + ), + ]