call_command migrate problem python django
Я пытаюсь динамически добавить приложение и выполнить makemigrations и migration, но он не показывает print ('2'). Перезагружается и просит применить миграцию вручную
some.py
settings.INSTALLED_APPS += ('tests.apps.OrderConfig',)
apps.app_configs = OrderedDict()
apps.apps_ready = apps.models_ready = apps.loading = apps.ready = False
apps.clear_cache()
apps.populate(settings.INSTALLED_APPS)
management.call_command('makemigrations','tests', interactive=False)
print('>>WORK1')
management.call_command('migrate', app_module.MODULE_NAME, interactive=False, skip_checks=True)
print('>>WORK2') #this don't show
Terminal:
Migrations for 'orders':
orders\migrations\0001_initial.py
- Create model Status
- Create model Orders
>>WORK1
Operations to perform:
Apply all migrations: orders
Running migrations:
[11/Feb/2021 02:07:22] "GET /plugins/repository/12/ HTTP/1.1" 200 14459
C:\PythonProject\ServiceCRM3\plugins\settings_plugin.py changed, reloading.
Applying orders.0001_initial...Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
You have 1 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): orders.
Run 'python manage.py migrate' to apply them.
February 11, 2021 - 02:07:24
Django version 3.1.4, using settings 'ServiceCRM3.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.