summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2009-09-25 22:47:04 -0500
committerDan McGee <dan@archlinux.org>2009-09-25 22:47:04 -0500
commitc95e5d40534012ce20efcf360d650775177378e9 (patch)
tree3e5923e107f69d6aced98a856869ffa60306ce2a /main
parent9dc89e8287d9f34da140d0494005388b7abc14c2 (diff)
downloadarchweb-c95e5d40534012ce20efcf360d650775177378e9.tar.gz
archweb-c95e5d40534012ce20efcf360d650775177378e9.zip
Update reporead and model to store pkgbase
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main')
-rw-r--r--main/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py
index eb16e612..7fa0f4bf 100644
--- a/main/models.py
+++ b/main/models.py
@@ -165,6 +165,7 @@ class Package(models.Model):
maintainer = models.ForeignKey(User, related_name="maintained_packages")
needupdate = models.BooleanField(default=False)
pkgname = models.CharField(max_length=255)
+ pkgbase = models.CharField(max_length=255, null=True, blank=True)
pkgver = models.CharField(max_length=255)
pkgrel = models.CharField(max_length=255)
pkgdesc = models.CharField(max_length=255)