agenda_culturel/src/agenda_culturel/migrations/0047_categorisationrule_loc...

24 lines
857 B
Python

# Generated by Django 4.2.7 on 2024-04-16 11:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('agenda_culturel', '0046_event_moderated_date'),
]
operations = [
migrations.AddField(
model_name='categorisationrule',
name='loc_exact',
field=models.BooleanField(default=False, help_text='If checked, the extract will be searched for in the location using the exact form (capitals, accents).', verbose_name='Exact location extract'),
),
migrations.AddField(
model_name='categorisationrule',
name='location_contains',
field=models.CharField(blank=True, help_text='Text contained in the event location', max_length=512, null=True, verbose_name='Contained in the location'),
),
]