summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-07-07 01:20:02 +0200
committerDan McGee <dan@archlinux.org>2010-07-07 01:36:17 +0200
commit145b80d0c6c466b08caf094df14d74ae56235151 (patch)
tree6a0c60f697cf165179df2e8ff12481f3e13ac9a6 /main/models.py
parent845838190d16f93b791094d071d737539bd21573 (diff)
downloadarchweb-145b80d0c6c466b08caf094df14d74ae56235151.tar.gz
archweb-145b80d0c6c466b08caf094df14d74ae56235151.tar.xz
Make flag column on packages a date
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py
index b692268..758e403 100644
--- a/main/models.py
+++ b/main/models.py
@@ -176,6 +176,7 @@ class Package(models.Model):
last_update = models.DateTimeField(null=True, blank=True)
files_last_update = models.DateTimeField(null=True, blank=True)
license = models.CharField(max_length=255, null=True)
+ flag_date = models.DateTimeField(null=True)
objects = PackageManager()
class Meta: