From d0e3c399be927dbdb375498b15ec7ed1d9be2944 Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 2 Feb 2024 15:42:14 -0800 Subject: [PATCH] 12795 add comment to migration db_table --- netbox/users/migrations/0005_alter_user_table.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/users/migrations/0005_alter_user_table.py b/netbox/users/migrations/0005_alter_user_table.py index 563a3f17f..6c4a815dd 100644 --- a/netbox/users/migrations/0005_alter_user_table.py +++ b/netbox/users/migrations/0005_alter_user_table.py @@ -27,6 +27,8 @@ class Migration(migrations.Migration): ] operations = [ + # 0001_squashed had model with db_table=auth_user - now we switch it + # to None to use the default Django resolution (users.user) migrations.AlterModelTable( name='user', table=None,