On Thu, Apr 5, 2012 at 1:27 PM, Joel Goldstick wrote:
> I have a model with auto_now, and auto_now_add set for Update and Create
> fields:
> class HotelProfiles(models.Model):
> fe_result_id = models.AutoField(primary_key=True)
> fe_created_date = models.DateTimeField(verbose_name='Created'
I have a model with auto_now, and auto_now_add set for Update and Create fields:
class HotelProfiles(models.Model):
fe_result_id = models.AutoField(primary_key=True)
fe_created_date = models.DateTimeField(verbose_name='Created',
blank=True, auto_now_add=True)
fe_updated_date = models.Da
2 matches
Mail list logo