Skip to content

Commit

Permalink
migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
liyiy committed Dec 9, 2023
1 parent 1ab707e commit 1543f27
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions posthog/migrations/0374_alter_survey_type.py
Original file line number Diff line number Diff line change
@@ -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,
),
),
]

0 comments on commit 1543f27

Please sign in to comment.