mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
Revert "Fixed #22645: Allow apps with no models module to still have migrations"
This reverts commit a4737bf6ae36a5f1cb29f2232f6deeff084fabff.
This commit is contained in:
parent
03900a02d5
commit
12c72796c3
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
@ -63,6 +62,8 @@ class MigrationLoader(object):
|
|||||||
self.unmigrated_apps = set()
|
self.unmigrated_apps = set()
|
||||||
self.migrated_apps = set()
|
self.migrated_apps = set()
|
||||||
for app_config in apps.get_app_configs():
|
for app_config in apps.get_app_configs():
|
||||||
|
if app_config.models_module is None:
|
||||||
|
continue
|
||||||
# Get the migrations module directory
|
# Get the migrations module directory
|
||||||
module_name = self.migrations_module(app_config.label)
|
module_name = self.migrations_module(app_config.label)
|
||||||
was_loaded = module_name in sys.modules
|
was_loaded = module_name in sys.modules
|
||||||
|
Loading…
x
Reference in New Issue
Block a user