From 666a9e28a2815bcf4f43c81391456cceb8e21f8a Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Thu, 21 May 2015 02:04:08 -0700 Subject: [PATCH] auto_now_add on userflashcard.pulled --- flashcards/migrations/0003_auto_20150521_0203.py | 22 ++++++++++++++++++++++ flashcards/models.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 flashcards/migrations/0003_auto_20150521_0203.py diff --git a/flashcards/migrations/0003_auto_20150521_0203.py b/flashcards/migrations/0003_auto_20150521_0203.py new file mode 100644 index 0000000..489e260 --- /dev/null +++ b/flashcards/migrations/0003_auto_20150521_0203.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations +import datetime +from django.utils.timezone import utc + + +class Migration(migrations.Migration): + + dependencies = [ + ('flashcards', '0002_auto_20150520_1322'), + ] + + operations = [ + migrations.AlterField( + model_name='userflashcard', + name='pulled', + field=models.DateTimeField(default=datetime.datetime(2015, 5, 21, 9, 3, 53, 345704, tzinfo=utc), help_text=b'When the user pulled the card', auto_now_add=True), + preserve_default=False, + ), + ] diff --git a/flashcards/models.py b/flashcards/models.py index 26796fe..d74518f 100644 --- a/flashcards/models.py +++ b/flashcards/models.py @@ -129,7 +129,7 @@ class UserFlashcard(Model): user = ForeignKey('User') mask = MaskField(max_length=255, null=True, blank=True, default=None, help_text="The user-specific mask on the card") - pulled = DateTimeField(blank=True, null=True, default=None, help_text="When the user pulled the card") + pulled = DateTimeField(auto_now_add=True, help_text="When the user pulled the card") flashcard = ForeignKey('Flashcard') class Meta: -- 1.9.1