37769-vm/core/migrations/0030_event_location_name.py
2026-01-30 04:40:56 +00:00

19 lines
430 B
Python

# Generated by Django 5.2.7 on 2026-01-29 22:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0029_event_address_event_city_event_latitude_and_more'),
]
operations = [
migrations.AddField(
model_name='event',
name='location_name',
field=models.CharField(blank=True, max_length=255),
),
]