Re: New Django manage.py bugs

2006-05-25 Thread Douglas Campos
i've saw too that manage.py syncdb create tables out of order, disobeying the foreign keys, many to many tables, etc... On 5/25/06, Siah <[EMAIL PROTECTED]> wrote: > > Thanks for the response adrian. > > Somehow I felt the result of Alter Table is not as efficient as > properly creating the

Re: New Django manage.py bugs

2006-05-25 Thread Siah
Thanks for the response adrian. Somehow I felt the result of Alter Table is not as efficient as properly creating the table in the first place. If I'm incorrect, that I think I am, your suggestion is actually very good and should make my life more efficient. I guess if I go with above, I don't

New Django manage.py bugs

2006-05-25 Thread Siah
I am 7 months into coding a large django application. Due to needing extra bytea fields with my database, I started maintaining my own SQL instead of django-admin install app. Everytime I made changes to my model, I would take django-admin sqlall app and apply those changes. Its been a few days