django-cats/cats/migrations/0022_rename_incorrect_answers.py

18 lines
353 B
Python
Raw Permalink Normal View History

2024-09-20 08:57:25 +00:00
# Generated by Django 4.2.16 on 2024-09-20 08:15
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("cats", "0021_remove_redundancy"),
]
operations = [
migrations.RenameModel(
old_name="IncorrectAnswer",
new_name="OriginalIncorrectAnswer",
),
]