class Message(models.Model):
description = models.CharField(maxlength=200)
author = models.ForeignKey(User)
temp = models.CharField(maxlength=100)
When i syncdb, i do not want the column temp to be created. Is there
any arguments i can pass to enable this?
Eg.
temp = models.CharField(maxlength=100, persist=False)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---