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)
~ Anders
~ Anders
class Message(models.Model):
description = models.CharField(maxlength=200)
author = models.ForeignKey(User)
temp = ""
and it should never get stored in the database as far as I know... Or do
you need to have a CharField for a specific reason?
anders conbere schrieb: