You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
custom_user.HistoricalCustomUser.history_user: (fields.E300) Field defines a relation with model 'custom_user.CustomUser', which is either not installed, or is abstract.
8
+
9
+
Use ``register()`` to track changes to the custom user model
10
+
instead of setting ``HistoricalRecords`` on the model directly.
11
+
See :ref:`register`.
12
+
13
+
The reason for this, is that unfortunately ``HistoricalRecords``
14
+
cannot be set directly on a swapped user model because of the user
15
+
foreign key to track the user making changes.
16
+
17
+
- ``HistoricalRecords`` is not inherited
18
+
19
+
Allowing ``HistoricalRecords`` to be inherited from abstract
20
+
models or other parents is a feature we would love to add. The
21
+
current contributors do not have a need for that feature at this
22
+
point, and need some help understanding how this feature should be
0 commit comments