syncdb will not automatically add new fields in a model.  You have to
add the new fields to the database yourself.  'python manage.py sql'
will give you the new sql statements to recreate your models, and you
can pick out the part regarding your new fields.  Also, if you don't
care about existing data in the models, you can run 'python manage.py
sql app_name', which will recreate your database tables.


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