mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 05:26:40 +03:00
23 lines
516 B
Python
23 lines
516 B
Python
|
# Generated by Django 4.2.1 on 2023-05-20 09:59
|
||
|
|
||
|
from django.db import migrations
|
||
|
import location_field.models.plain
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("events", "0003_alter_region_city"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="city",
|
||
|
name="location",
|
||
|
field=location_field.models.plain.PlainLocationField(
|
||
|
default=0, max_length=63
|
||
|
),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|