diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-16 12:03:40 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-22 21:41:33 -0500 |
commit | 3f6aaf6ebea24de850afd670a04810c6b25f9bc7 (patch) | |
tree | acba7a69f00224d8bc0c37d26b1afb8c431dee7e /main/models.py | |
parent | e8bbf9b35660c89718a35e173548d2abb4b654f8 (diff) |
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.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py index c37ea915..a6eec9ca 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, |