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
media_tree models and migrations need to use settings.AUTH_USER_MODEL, otherwise upon migration you'll get:
CommandError: System check identified some issues:
ERRORS:
media_tree.FileNode.created_by: (fields.E301) Field defines a relation with the model 'auth.User', which has been swapped out.
HINT: Update the relation to point at 'settings.AUTH_USER_MODEL'.
media_tree.FileNode.modified_by: (fields.E301) Field defines a relation with the model 'auth.User', which has been swapped out.
HINT: Update the relation to point at 'settings.AUTH_USER_MODEL'.
The text was updated successfully, but these errors were encountered:
media_tree models and migrations need to use
settings.AUTH_USER_MODEL
, otherwise upon migration you'll get:The text was updated successfully, but these errors were encountered: