It sounds like you may have created your Models, run "mange.py syncdb", then 
added another field to your Model.

Remember, syncdb doesn't add new columns in your table when you add a new 
field to an existing model.  If this app is still in development, you can 
drop the whole table corresponding to that model and run syncdb again.

You should also consider looking at south (http://south.aeracode.org/). It 
provides migration tools that let you add columns to existing models via a 
managment command.

- Brad

-- 
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 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to