summaryrefslogtreecommitdiff
path: root/main/models.py
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-04-23 21:57:59 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-04-23 21:57:59 -0400
commit55b776d58999412cd6bf0787a41d6ab00bf80fb6 (patch)
treee6c151ee22207465346b230f92a42d75576409d1 /main/models.py
parent4578eb77da75c24f9b366c2ade46f55b0702b340 (diff)
parentac1c00ee86cc0e355af5e4e6be47ca861091356b (diff)
Merge branch 'archweb' into archweb-generic2
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py
index 2f4d3520..2ace0109 100644
--- a/main/models.py
+++ b/main/models.py
@@ -48,6 +48,8 @@ class Arch(models.Model):
name = models.CharField(max_length=255, unique=True)
agnostic = models.BooleanField(default=False,
help_text="Is this architecture non-platform specific?")
+ required_signoffs = models.PositiveIntegerField(default=2,
+ help_text="Number of signoffs required for packages of this architecture")
def __unicode__(self):
return self.name