summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py
index b8ca28f..abbe050 100644
--- a/main/models.py
+++ b/main/models.py
@@ -161,6 +161,7 @@ class Arch(models.Model):
class Repo(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=255,unique=True)
+ testing = models.BooleanField(default=False)
def __unicode__(self):
return self.name
class Meta: