Forums

Sync DB shell command don't apply models change into the mysql database

hello,

when i try to apply some models changes to my mysqldatabase by using the shell syncdb command, nothing append !

any idea ?

i've tried the commandline :

python3 manage.py syncdb

syncdb doesn't change existing tables. It only creates tables that don't already exist. Depending on your Django version, you either want to investigate South for migrations or in the newer versions (1.7+, I think) migrations are built in.

Thank's a lot for the way to investigate.