settings application
.env db params+global settings in admin model ECVI plugin module
This commit is contained in:
18
hotels/migrations/0009_hotel_description.py
Normal file
18
hotels/migrations/0009_hotel_description.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.4 on 2024-12-14 02:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('hotels', '0008_hotel_address_hotel_city_hotel_email_hotel_phone_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='hotel',
|
||||
name='description',
|
||||
field=models.TextField(blank=True, null=True, verbose_name='Описание'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user