mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-12 23:05:12 +00:00
Add concept of supported versions
Also, only index docs for supported versions...
This commit is contained in:
@ -10,6 +10,7 @@ class Version(models.Model):
|
||||
reldate = models.DateField(null=False, blank=False)
|
||||
relnotes = models.CharField(max_length=32, null=False, blank=False)
|
||||
current = models.BooleanField(null=False, blank=False, default=False)
|
||||
supported = models.BooleanField(null=False, blank=False, default=True)
|
||||
|
||||
def __unicode__(self):
|
||||
return self.versionstring
|
||||
|
Reference in New Issue
Block a user