20 lines
451 B
Python
20 lines
451 B
Python
# Generated by Django 5.2.8 on 2025-11-11 20:33
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('flightslot', '0010_alter_hourbuildingleg_time'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='hourbuildingleg',
|
|
name='time',
|
|
field=models.DurationField(default=datetime.timedelta(seconds=3600)),
|
|
),
|
|
]
|