diff options
author | Dan McGee <dan@archlinux.org> | 2010-07-06 18:20:02 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-06 18:36:17 -0500 |
commit | 145b80d0c6c466b08caf094df14d74ae56235151 (patch) | |
tree | 6a0c60f697cf165179df2e8ff12481f3e13ac9a6 /main/models.py | |
parent | 845838190d16f93b791094d071d737539bd21573 (diff) |
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.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py index b6922680..758e4036 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: |