On 21-Dec-06, at 2:14 AM, ringemup wrote:
In the meantime, I'm interested in picking up some ideas: how do you deal with changing database structures as you develop a Django app?
1. if you just add a new model - run syncdb and it automatically gets added 2. if you are not worried about data loss run sqlreset - or better, drop the database, create it and run syncdb 3. if you alter a model, run sqlall, examine the out put to see what statements django wants and put them in manually
-- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

