From 3f6aaf6ebea24de850afd670a04810c6b25f9bc7 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 16 Mar 2011 12:03:40 -0500 Subject: Add 'staging' field to Repo model First steps towards implementing FS#23298. Signed-off-by: Dan McGee --- main/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/models.py') 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, -- cgit v1.2.3-24-g4f1b