You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hausarbeit-hikmat_galan_neu.../mensaviewer/migrations/0007_allergen_name_tag_name.py

24 lines
624 B
Python

# Generated by Django 4.1.4 on 2023-01-02 02:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mensaviewer', '0006_allergen_tag_remove_menu_allergens_remove_menu_tags_and_more'),
]
operations = [
migrations.AddField(
model_name='allergen',
name='name',
field=models.CharField(blank=True, max_length=144, null=True),
),
migrations.AddField(
model_name='tag',
name='name',
field=models.CharField(blank=True, max_length=144, null=True),
),
]