On 8/17/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> That mentions syncdb will never alter tables, because of ambiguity.
>
> So how do I do it?

The problem you are referring to is schema evolution - evolving the
database schema for a Django model over time. Search the archives and
you will find multiple projects currently underway that are attempting
to resolve this issue.

In the absence of one of these projects, the solution is to either:
1) Use the SQL ALTER TABLE statement to change your model, or
2) Use a combination of loaddata, dumpdata, recreating tables and
manual data modification.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
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