Skip to content

Commit 958ac5e

Browse files
committed
rebuild poll test migration
1 parent 94cd8e3 commit 958ac5e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

django_typer/tests/polls/migrations/0001_initial.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Generated by Django 4.2.8 on 2024-01-24 18:19
1+
# Generated by Django 5.0.3 on 2024-03-13 21:01
22

33
import django.db.models.deletion
44
from django.db import migrations, models
55

66

77
class Migration(migrations.Migration):
8+
89
initial = True
910

1011
dependencies = []
@@ -25,6 +26,10 @@ class Migration(migrations.Migration):
2526
("question_text", models.CharField(max_length=200)),
2627
("pub_date", models.DateTimeField(verbose_name="date published")),
2728
],
29+
options={
30+
"verbose_name": "Poll",
31+
"verbose_name_plural": "Polls",
32+
},
2833
),
2934
migrations.CreateModel(
3035
name="Choice",

0 commit comments

Comments
 (0)