receipe-django-react/receipeServer/receipe/migrations/0049_alter_articlemaps_unique_together.py
2023-11-09 18:47:11 +01:00

17 lines
370 B
Python

# Generated by Django 4.2.1 on 2023-07-17 16:04
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("receipe", "0048_alter_ingredients_name"),
]
operations = [
migrations.AlterUniqueTogether(
name="articlemaps",
unique_together={("article", "receipeImage")},
),
]