2023-01-09 17:57:22 +00:00
|
|
|
# Generated by Django 4.1.5 on 2023-01-09 14:49
|
|
|
|
|
|
|
|
import datetime
|
2023-01-15 22:39:52 +00:00
|
|
|
|
2023-01-09 17:57:22 +00:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2023-01-19 19:35:25 +00:00
|
|
|
("games", "0003_alter_session_duration_manual_and_more"),
|
2023-01-09 17:57:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name="session",
|
|
|
|
name="duration_manual",
|
|
|
|
field=models.DurationField(
|
|
|
|
blank=True, default=datetime.timedelta(0), null=True
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|