From b12f4952b333d54aaef7a870d94ed40ce0046fed Mon Sep 17 00:00:00 2001 From: Sicherhaven Date: Wed, 25 Mar 2026 11:49:15 +0530 Subject: [PATCH] fix: update admin_api migration dependency to existing events migration 0001_initial was referencing events.0011_dashboard_indexes which no longer exists as a file on disk (the DB has it applied but the file was removed). Updated dependency to 0010_merge_20260324_1443 which is the latest events migration file present, resolving the NodeNotFoundError on management commands. --- admin_api/migrations/0001_initial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_api/migrations/0001_initial.py b/admin_api/migrations/0001_initial.py index d7f8e83..852fc30 100644 --- a/admin_api/migrations/0001_initial.py +++ b/admin_api/migrations/0001_initial.py @@ -11,7 +11,7 @@ class Migration(migrations.Migration): initial = True dependencies = [ - ('events', '0011_dashboard_indexes'), + ('events', '0010_merge_20260324_1443'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ]