aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'euscanwww/djeuscan/models.py')
-rw-r--r--euscanwww/djeuscan/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/euscanwww/djeuscan/models.py b/euscanwww/djeuscan/models.py
index feb7598..d1efdd4 100644
--- a/euscanwww/djeuscan/models.py
+++ b/euscanwww/djeuscan/models.py
@@ -152,6 +152,9 @@ class Version(models.Model):
ebuild_path = models.CharField(blank=True, max_length=256)
metadata_path = models.CharField(blank=True, max_length=256)
+ # If this is not null then the version is a stabilization candidate
+ stabilization_candidate = models.DateField(blank=True, null=True, default=None)
+
class Meta:
unique_together = ['package', 'revision', 'version', 'overlay']