Python 当我将主机指定在Mlab上时,djongo为什么要在本地服务器上创建迁移?

Python 当我将主机指定在Mlab上时,djongo为什么要在本地服务器上创建迁移?,python,django,mongodb,migration,djongo,Python,Django,Mongodb,Migration,Djongo,在my settings.py文件中,我有以下内容: 'ENGINE': 'djongo', 'NAME': '<db_name>, 'HOST': 'mongodb://username:<password>@ds147436.mlab.com:47436/<db_name>', 'USER': 'username', 'PASSWORD': '<password>', 你在看什么文档?我修复了它,有点像,我

在my settings.py文件中,我有以下内容:

  'ENGINE': 'djongo',
    'NAME': '<db_name>,
    'HOST': 'mongodb://username:<password>@ds147436.mlab.com:47436/<db_name>',
    'USER': 'username',
    'PASSWORD': '<password>',

你在看什么文档?我修复了它,有点像,我使用了“引擎”:“djongo”,“NAME:”,“CLIENT:{“host:”mongodb:/:@ds161062.mlab.com:61062/projectname_db”,“username:”,“password:”,}但是Mlab并没有得到MongoDB Compass版本所得到的所有默认模式的填充,仍然在试图找出原因。@SimonSuh您得到这个问题的解决方案了吗?
(env) PS D:\Business\Daydoa\v6-Django_with_MongoDB3\djongo_project> python manage.py migrate       
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sessions
Running migrations:
This version of djongo does not support "NULL, NOT NULL column validation check" fully. Visit https://www.patreon.com/nesdis
  Applying contenttypes.0001_initial...This version of djongo does not support "schema validation using CONSTRAINT" fully. Visit https://www.patreon.com/nesdis
 OK
  Applying auth.0001_initial...This version of djongo does not support "schema validation using KEY" fully. Visit https://www.patreon.com/nesdis
This version of djongo does not support "schema validation using REFERENCES" fully. Visit https://www.patreon.com/nesdis
 OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name...This version of djongo does not support "COLUMN DROP NOT NULL " fully. Visit https://www.patreon.com/nesdis
This version of djongo does not support "DROP CASCADE" fully. Visit https://www.patreon.com/nesdis
 OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying sessions.0001_initial... OK