From 0efc3db6057320437bbbb41554b59ff62eeec37d Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 17 Nov 2025 14:03:01 +0300 Subject: [PATCH] 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 --- engine/vibes_auth/migrations/0001_initial.py | 2 +- .../migrations/0002_blacklistedtoken_outstandingtoken.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/vibes_auth/migrations/0001_initial.py b/engine/vibes_auth/migrations/0001_initial.py index 1fe09bd9..a746b524 100644 --- a/engine/vibes_auth/migrations/0001_initial.py +++ b/engine/vibes_auth/migrations/0001_initial.py @@ -15,7 +15,7 @@ class Migration(migrations.Migration): # noinspection PyUnresolvedReferences dependencies = [ - ("auth", "__latest__"), + ("auth", "0012_alter_user_first_name_max_length"), ] operations = [ diff --git a/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py b/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py index 5aea9aa3..03d1900d 100644 --- a/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py +++ b/engine/vibes_auth/migrations/0002_blacklistedtoken_outstandingtoken.py @@ -4,7 +4,7 @@ from django.db import migrations class Migration(migrations.Migration): # noinspection PyUnresolvedReferences dependencies = [ - ("token_blacklist", "__latest__"), + ("token_blacklist", "0012_alter_outstandingtoken_user"), ("vibes_auth", "0001_initial"), ]