summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-03-16 18:03:40 +0100
committerDan McGee <dan@archlinux.org>2011-03-23 03:41:33 +0100
commit3f6aaf6ebea24de850afd670a04810c6b25f9bc7 (patch)
treeacba7a69f00224d8bc0c37d26b1afb8c431dee7e /main/models.py
parente8bbf9b35660c89718a35e173548d2abb4b654f8 (diff)
downloadarchweb-3f6aaf6ebea24de850afd670a04810c6b25f9bc7.tar.gz
archweb-3f6aaf6ebea24de850afd670a04810c6b25f9bc7.tar.xz
Add 'staging' field to Repo model
First steps towards implementing FS#23298. Signed-off-by: Dan McGee <dan@archlinux.org>
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 c37ea91..a6eec9c 100644
--- a/main/models.py
+++ b/main/models.py
@@ -84,6 +84,8 @@ class Repo(models.Model):
name = models.CharField(max_length=255, unique=True)
testing = models.BooleanField(default=False,
help_text="Is this repo meant for package testing?")
+ staging = models.BooleanField(default=False,
+ help_text="Is this repo meant for package staging?")
bugs_project = models.SmallIntegerField(default=1,
help_text="Flyspray project ID for this repository.")
svn_root = models.CharField(max_length=64,