[Answered ]-Why leads deletion of UUIDField to Django SystemCheckError

1πŸ‘

βœ…

Could someone explain me what’s going on and how to resolve this?

As the error says, you have a model admin named CustomerAdmin. Indeed:

<class 'accounts.admin.CustomerAdmin'>: (admin.E035) The value of 'readonly_fields[1]' is not a callable, an attribute of 'CustomerAdmin', or an attribute of 'accounts.Customer'.

For the readonly_fields, it lists the customer_id, but since that field is no longer available, it raises the error.

Leave a comment