mysteriendrama/lib/python3.11/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py
2023-07-22 12:13:39 +02:00

14 lines
369 B
Python

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("auth", "0005_alter_user_last_login_null"),
("contenttypes", "0002_remove_content_type_name"),
]
operations = [
# Ensure the contenttypes migration is applied before sending
# post_migrate signals (which create ContentTypes).
]