We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94cd8e3 commit 958ac5eCopy full SHA for 958ac5e
django_typer/tests/polls/migrations/0001_initial.py
@@ -1,10 +1,11 @@
1
-# Generated by Django 4.2.8 on 2024-01-24 18:19
+# Generated by Django 5.0.3 on 2024-03-13 21:01
2
3
import django.db.models.deletion
4
from django.db import migrations, models
5
6
7
class Migration(migrations.Migration):
8
+
9
initial = True
10
11
dependencies = []
@@ -25,6 +26,10 @@ class Migration(migrations.Migration):
25
26
("question_text", models.CharField(max_length=200)),
27
("pub_date", models.DateTimeField(verbose_name="date published")),
28
],
29
+ options={
30
+ "verbose_name": "Poll",
31
+ "verbose_name_plural": "Polls",
32
+ },
33
),
34
migrations.CreateModel(
35
name="Choice",
0 commit comments