On Tue, Mar 25, 2008 at 1:01 PM, Jacob <[EMAIL PROTECTED]> wrote:

>
> Hi,
> 1) This is my first time posting, I hope someone can lead me in a
> direction of a good django wiki or the like to get this kind of info
> from in the future.
>
> 2) My question is, I have noticed that when I change things in the
> models.py of my project, and then run manage.py syncdb, after that I
> get OperationalError: no such table:
>
> So I am using SQLite, and maybe the problem is coming from that... I
> can destroy the records (as theyre all foo at this point) I am just
> looking for how to....  I guess the real question, how do I ask django
> to erase the db entirely and build the new one based on 'models'.
>

manage.py reset

drops your old tables and re-creates them per the doc here:

http://www.djangoproject.com/documentation/django-admin/

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to