20 lines
597 B
Python
20 lines
597 B
Python
# Generated by Django 5.1.4 on 2024-12-07 11:11
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hotels', '0018_alter_userhotel_hotel_alter_userhotel_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='apirequestlog',
|
|
name='response_status',
|
|
field=models.IntegerField(validators=[django.core.validators.MinValueValidator(100), django.core.validators.MaxValueValidator(599)], verbose_name='HTTP статус ответа'),
|
|
),
|
|
]
|