mirror of
https://github.com/django/django.git
synced 2025-10-27 23:56:08 +00:00
Fixed #22331 -- Fixed migrations ProjectState to ignore unmanaged models.
This commit is contained in:
@@ -58,8 +58,9 @@ class ProjectState(object):
|
||||
"Takes in an Apps and returns a ProjectState matching it"
|
||||
app_models = {}
|
||||
for model in apps.get_models():
|
||||
model_state = ModelState.from_model(model)
|
||||
app_models[(model_state.app_label, model_state.name.lower())] = model_state
|
||||
if model._meta.managed:
|
||||
model_state = ModelState.from_model(model)
|
||||
app_models[(model_state.app_label, model_state.name.lower())] = model_state
|
||||
return cls(app_models)
|
||||
|
||||
def __eq__(self, other):
|
||||
|
||||
Reference in New Issue
Block a user