]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/models.py
Add URL and SCM data to projects
[patchwork] / apps / patchwork / models.py
index bbfe827aec551d41bdc75a8f0dde6315b74a09d5..86a5266cff2d2177f682c57e6fcea8897b616b66 100644 (file)
@@ -64,6 +64,9 @@ class Project(models.Model):
     name = models.CharField(max_length=255, unique=True)
     listid = models.CharField(max_length=255, unique=True)
     listemail = models.CharField(max_length=200)
+    web_url = models.CharField(max_length=2000, blank=True)
+    scm_url = models.CharField(max_length=2000, blank=True)
+    webscm_url = models.CharField(max_length=2000, blank=True)
     send_notifications = models.BooleanField()
 
     def __unicode__(self):