mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-18 21:14:05 +01:00
20 lines
480 B
Python
20 lines
480 B
Python
# Generated by Django 4.2.4 on 2023-09-09 15:16
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('polls', '0007_question_participant_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='question',
|
|
name='pub_date',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='date published'),
|
|
),
|
|
]
|