Skip to content

Commit

Permalink
Create old migrations that were not done before
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 9, 2020
1 parent b3b9f79 commit 0d3ff29
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions survey/migrations/0013_auto_20200609_0748.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 3.0.7 on 2020-06-09 07:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [("survey", "0012_add_display_by_category")]

operations = [
migrations.AlterField(
model_name="question",
name="type",
field=models.CharField(
choices=[
("text", "text (multiple line)"),
("short-text", "short text (one line)"),
("radio", "radio"),
("select", "select"),
("select-multiple", "Select Multiple"),
("select_image", "Select Image"),
("integer", "integer"),
("float", "float"),
("date", "date"),
],
default="text",
max_length=200,
verbose_name="Type",
),
)
]

0 comments on commit 0d3ff29

Please sign in to comment.