我有一个使用 django 的服务器。我正在尝试将我的数据库从 sqlite3 切换到 mysql。之前使用 sqlite3 一切正常。但是,当我使用 mysql 并做
python manage.py syncdb
我没有收到任何错误,但未创建 models.py 中指定的表。仅创建以下表:
[ec2-user@domU-12-31-39-0F-D2-F3 prototype]$ python manage.py syncdb
Syncing...
Creating tables ...
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_user_permissions
Creating table auth_user_groups
Creating table auth_user
Creating table django_content_type
Creating table django_session
Creating table django_site
Creating table django_admin_log
Creating table south_migrationhistory
有谁知道为什么?