Re: . delete() don't work

2012-06-06 Thread bruno desthuilliers
On Jun 5, 7:22 pm, Lucas Aride Moulin wrote: > The syncdb worked. Isso didn't know that the delete() need a table. > Thanks, It doesn't, of course. The problem you report is surprising to say the least... -- You received this message because you are subscribed to the Google Groups "Django user

Re: . delete() don't work

2012-06-05 Thread Lucas Aride Moulin
The syncdb worked. Isso didn't know that the delete() need a table. Thanks, On Jun 5, 2012 10:50 AM, "David Markey" wrote: > Did you do a python manage.py syncdb? > > Are you using sqlite and have relative paths? > > On 5 June 2012 14:37, Lucas Aride Moulin wrote: > >> When I use example.objects

Re: . delete() don't work

2012-06-05 Thread David Markey
Did you do a python manage.py syncdb? Are you using sqlite and have relative paths? On 5 June 2012 14:37, Lucas Aride Moulin wrote: > When I use example.objects.all().delete() I get an error that the table > example_delete wasn't found on the DB. Any ideas of what am I doing wrong? > Thanks, >