Re: database table doesn't exist

2007-08-11 Thread Doug B
Syncdb doesn't create the intermediary table* if the model the manytomanyfield is on already exists. You'll have to create it manually, or drop the entry table and then run syncdb to create it. ManyToManyField keeps track of the relations in a 3 column third table like: id | entry_id | tag_id

database table doesn't exist

2007-08-11 Thread Evan H. Carmi
Hi, I was implementing tags on my blog and ran into this problem: Under the administration page I can create and view tags. I can also view a list of entries and try and create an entry. When I try and create an entry I can fill out the entry form and save it. The data is saved and appears on my