Loading django/db/migrations/loader.py +0 −2 Original line number Diff line number Diff line Loading @@ -63,8 +63,6 @@ class MigrationLoader(object): self.unmigrated_apps = set() self.migrated_apps = set() for app_config in apps.get_app_configs(): if app_config.models_module is None: continue # Get the migrations module directory module_name = self.migrations_module(app_config.label) was_loaded = module_name in sys.modules Loading docs/releases/1.8.txt +3 −0 Original line number Diff line number Diff line Loading @@ -276,6 +276,9 @@ Migrations * The :class:`~django.db.migrations.operations.RunSQL` operation can now handle parameters passed to the SQL statements. * It is now possible to have migrations (most probably :ref:`data migrations <data-migrations>`) for applications without models. Models ^^^^^^ Loading Loading
django/db/migrations/loader.py +0 −2 Original line number Diff line number Diff line Loading @@ -63,8 +63,6 @@ class MigrationLoader(object): self.unmigrated_apps = set() self.migrated_apps = set() for app_config in apps.get_app_configs(): if app_config.models_module is None: continue # Get the migrations module directory module_name = self.migrations_module(app_config.label) was_loaded = module_name in sys.modules Loading
docs/releases/1.8.txt +3 −0 Original line number Diff line number Diff line Loading @@ -276,6 +276,9 @@ Migrations * The :class:`~django.db.migrations.operations.RunSQL` operation can now handle parameters passed to the SQL statements. * It is now possible to have migrations (most probably :ref:`data migrations <data-migrations>`) for applications without models. Models ^^^^^^ Loading