Features:
Fixes: 1) Align migration dependencies with correct auth and token_blacklist migration versions; 2) Ensure proper migration ordering between vibes_auth and token_blacklist. Extra: None
This commit is contained in:
parent
00a172d463
commit
0efc3db605
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ class Migration(migrations.Migration):
|
||||||
|
|
||||||
# noinspection PyUnresolvedReferences
|
# noinspection PyUnresolvedReferences
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("auth", "__latest__"),
|
("auth", "0012_alter_user_first_name_max_length"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ from django.db import migrations
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
# noinspection PyUnresolvedReferences
|
# noinspection PyUnresolvedReferences
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("token_blacklist", "__latest__"),
|
("token_blacklist", "0012_alter_outstandingtoken_user"),
|
||||||
("vibes_auth", "0001_initial"),
|
("vibes_auth", "0001_initial"),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue