18 lines
446 B
Python
18 lines
446 B
Python
# Generated by Django 4.2.5 on 2023-09-14 12:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cookbook', '0202_remove_space_show_facet_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddConstraint(
|
|
model_name='mealtype',
|
|
constraint=models.UniqueConstraint(fields=('space', 'name', 'created_by'), name='mt_unique_name_per_space'),
|
|
),
|
|
]
|