Skip to content

Commit

Permalink
Avoid migrations because of verbose_name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Nov 30, 2019
1 parent 7c79723 commit 5d29e26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions form_designer/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ class Migration(migrations.Migration):
),
),
("ordering", models.IntegerField(default=0, verbose_name="ordering")),
("title", models.CharField(verbose_name="title", max_length=100)),
("name", models.CharField(verbose_name="name", max_length=100)),
("title", models.CharField(verbose_name="field title", max_length=100)),
("name", models.CharField(verbose_name="field name", max_length=100)),
(
"type",
models.CharField(
verbose_name="type", choices=field_types, max_length=20
verbose_name="field type", choices=field_types, max_length=20
),
),
(
Expand Down

0 comments on commit 5d29e26

Please sign in to comment.