I have a server using django. I'm trying to switch my database from sqlite3 to mysql. Everything worked fine with sqlite3 before. However, when I use mysql and do
python manage.py syncdb
I didn't get any error, but the tables specified in models.py are not created. Only the following tables are created:
[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
Anyone know why?