tej.tan
tej.tan

Reputation: 4177

Syncdb not syncing few databases table in Django

Initially i started one project in Django installed cms , admin and few other apps.

Then i started new project , it was working fine . But now when i try to add same apps like cms , backend admin then i get his error

Not synced (use migrations):
 - sentry
 - cms
 - menus
 - cms.plugins.text
 - cms.plugins.picture
 - cms.plugins.link
 - cms.plugins.file
 - cms.plugins.snippet
 - cms.plugins.googlemap

i want to know that why this happens. Can i install only one project in django

I am using different databases for those different projects and they have their own manage.py.

There may be the other reason for error but i just think that may be the reason

Upvotes: 1

Views: 2890

Answers (1)

shanyu
shanyu

Reputation: 9716

Your project seems to use South as a migration tool. You are required to 'migrate' the apps by typing:

python manage.py migrate

Upvotes: 7

Related Questions