20 lines
537 B
Python
20 lines
537 B
Python
# Generated by Django 5.2.6 on 2025-09-30 03:03
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('simulator', '0004_alter_carrier_country_flight'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='flight',
|
|
name='flight_number',
|
|
field=models.PositiveIntegerField(validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(9999)]),
|
|
),
|
|
]
|