I'm using django 1.5.1, python 2.7.3, ubuntu 12.10 and sqlite. My project has been running flawlessly, but I added a database field, deleted my sqlite database-file and ran python manage.py syncdb. Now it suddenly fails with
DatabaseError: no such table: django_session. I haven't changed settings.py since my last successful run. I've also googled the problem (and it seem to pop up once in a while), but none of the solutions provided solved the problem. I've also made the path to the databasefile absolute, like so: import os PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(PROJECT_PATH, 'database.db'), 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': '', } } What's going on? -- Mvh/Best regards, Thomas Weholt http://www.weholt.org -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.