On 5/1/07, gsmith <[EMAIL PROTECTED]> wrote: > > I'm using sqllite as my database. I've added a Image Field to one of > my tables. I am wondering how i get my database to register this new > column. I thought running the command 'python manage.py syncdb' would > update my database. However, after I do that my admin errors out > saying ' no such column rso_members.image. > > Does anybody know what i need to do to have the admin register this > new column without having to delete and recreate my table?
you have to add your column manually I don't know much about SQLite, see http://www.sqlite.org/faq.html#q13 for some specific info with postgresql the syntax would be: ALTER TABLE your_table ADD COLUMN XXX; where XXX is the line containing the column you get when running ./manage.py sql your_app_name like: ALTER TABLE your_table ADD COLUMN some_text VARCHAR(200); > > > > > -- Honza Kr�l E-Mail: [EMAIL PROTECTED] ICQ#: 107471613 Phone: +420 606 678585 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---