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.../mensa/migrations/0005_rename_comments_commen...

33 lines
811 B
Python

# Generated by Django 4.1.4 on 2022-12-12 16:28
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('mensa', '0004_dish_dislikes_dish_likes_alter_dish_allergens_and_more'),
]
operations = [
migrations.RenameModel(
old_name='comments',
new_name='Comment',
),
migrations.RenameField(
model_name='dish',
old_name='priceEmployee',
new_name='price_employee',
),
migrations.RenameField(
model_name='dish',
old_name='priceGast',
new_name='price_guest',
),
migrations.RenameField(
model_name='dish',
old_name='priceStudent',
new_name='price_student',
),
]