cwurld wrote: > Hi, > > I am working on my first Django powered website. I am concerned about > how to modify apps after the site has gone live. For example, I have > created a model that contains a class based on the Django Auth User > class. Lets say that I go live and have 10,000 users in the db, then I > decide I want to add an attribute to that class. This would require a > new column to be added to the table in the db and possibly assign some > sort of default value to the existing customers. I know how I could do > that manually. Are their any Django tools to make that process easier. > > Also, more generally, can anyone recommend any links,docs, etc... that > discuss maintenance issues? > > Thanks, > Chuck
There arent any tools to do migrations yet to my knowledge, but I think that they are being worked on. The best way to do that now is just run the alter table statements yourself. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---