Search code examples
djangomigrationdjango-southsyncdb

syncdb not happening using south for migration


Synced:
 > django.contrib.auth
 > django.contrib.contenttypes
 > django.contrib.sessions
 > django.contrib.sites
 > django.contrib.messages
 > django.contrib.staticfiles
 > django.contrib.admin
 > django.contrib.admindocs
 > kaarya.account
 > kaarya.project
 > south

Not synced (use migrations):
 - kaarya.inspector
(use ./manage.py migrate to migrate these)
Finished "C:\Documents and Settings\EC.32-SAMUEL\workspace\kaarya\kaarya\manage.py syncdb" execution.

I once installed south and tried implementing migration then also prompted as Not synced (use migrations ):

Note : Here kaarya is my project and inspector is the app i tried migrating once using south but was not successful


Solution

  • Did you try

    python manage.py migrate
    

    If so what was the error?