I can't delete a specific users #20338
-
When I try to delete a users I get the following error:
This is only for this specific users. I can delete other users |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
That's odd. What version of NetBox are you running? The Deleting individual user records:
Or drop the whole table:
Then, you should be able to delete the user normally. |
Beta Was this translation helpful? Give feedback.
-
we are running version 4.3.2. I will try to delete the specific user |
Beta Was this translation helpful? Give feedback.
-
I deleted the user and it works. For now, this is good enough for me |
Beta Was this translation helpful? Give feedback.
That's odd. What version of NetBox are you running?
The
django_admin_log
table is from the old Django admin UI. It should be safe to just drop the table, or (to be on the safe side) remove any records for the user being deleted. You'll need to do this in the database shell (manage.py dbshell
) as there's no longer any application-level support for these objects.Deleting individual user records:
Or drop the whole table:
Then, you should be able to delete the user normally.