Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
663 B
24 lines
663 B
1 week ago
|
# Generated by Django 4.2.16 on 2024-11-05 18:56
|
||
|
#
|
||
|
# Tahle migrace je tu jen, aby Django nechtělo vyrábět migrace. Smiřte se s tím.
|
||
|
# Stejně se default u Deadlinu nikdy nepoužívá.
|
||
|
|
||
|
import datetime
|
||
|
from django.db import migrations, models
|
||
|
from django.utils import timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('tvorba', '0005_odstrel_treenode_post'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='deadline',
|
||
|
name='deadline',
|
||
|
field=models.DateTimeField(default=timezone.make_aware(datetime.datetime.combine(timezone.now(), datetime.time.max))),
|
||
|
),
|
||
|
]
|