agenda_culturel/src/agenda_culturel/migrations/0060_alter_place_address.py

19 lines
481 B
Python

# Generated by Django 4.2.7 on 2024-04-27 21:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('agenda_culturel', '0059_auto_20240427_1829'),
]
operations = [
migrations.AlterField(
model_name='place',
name='address',
field=models.CharField(blank=True, help_text='Address of this place (without city name)', null=True, verbose_name='Address'),
),
]