Commit a33d629b295c3b490fc09da03d6c31ff6b219e50
1 parent
575b144dbc
Exists in
master
check succeeded
Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff
flashy/flashcards/models.py
View file @
a33d629
... | ... | @@ -8,10 +8,10 @@ |
8 | 8 | 3. A user has a flashcard hidden from them |
9 | 9 | """ |
10 | 10 | user = models.ForeignKey(User) |
11 | - mask = models.ForeignKey(FlashcardMask) | |
12 | - pulled = models.DateTimeField('date pulled') | |
11 | + mask = models.ForeignKey('FlashcardMask') | |
12 | + pulled = models.DateTimeField() | |
13 | 13 | flashcard = models.ForeignKey(Flashcard) |
14 | - unpulled = models.DateTimeField('date unpulled') | |
14 | + unpulled = models.DateTimeField() | |
15 | 15 | |
16 | 16 | class FlashcardMask(models.Model): |
17 | 17 | ranges = models.CharField(max_length=255) |