更新:已解决
我在 virtualenv 上使用 macOS、Django 2.0,以及启动并运行 SQL Server 2017 的 Docker 容器。我正在尝试使用这个包:https ://github.com/michiya/django-pyodbc-azure
这是我的数据库 settings.py 设置:
DATABASES = {
'default': {
'ENGINE': 'sql_server.pyodbc',
'NAME': 'TUTORIAS_DATOS',
'HOST': '0.0.0.0',
'PORT': '1402',
'USER': '***',
'PASSWORD': '***',
'OPTIONS': {
'driver': 'ODBC Driver 13 for SQL Server',
'driver_charset': 'iso-8859-1',
}
}
}
问题是,当我进行python manage.py makemigrations
迁移时,但是当我尝试将迁移应用到数据库(python manage.py migrate
)时,我得到:
Operations to perform:
Apply all migrations: admin, auth, contenttypes, menu, sessions
Running migrations:
No migrations to apply.
如果我使用 sqlite(默认 Django 数据库),而不是我应该得到的,它是:
Operations to perform:
Apply all migrations: admin, auth, contenttypes, menu, sessions
Running migrations:
Applying contenttypes.0001_initial... OK
Applying auth.0001_initial... OK
Applying admin.0001_initial... OK
Applying admin.0002_logentry_remove_auto_add... OK
Applying contenttypes.0002_remove_content_type_name... 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 menu.0001_initial... OK
Applying sessions.0001_initial... OK
我不知道可能是什么问题,理论上如果我按照这个步骤(在 Windows 上)它工作得很好。
ODBC 连接显然正在工作,因为如果我设置了不正确的用户名/密码,我会收到错误消息。我的数据库(托管在 0.0.0.0:1402 上的容器)名称确实是 TUTORIAS_DATOS