mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Hide 8.0 by default from feature matrix
We're getting too many versions there, so from now on when we add a new one, we have to remove an old one.
This commit is contained in:
@ -30,6 +30,7 @@ class Feature(models.Model):
|
||||
v74 = models.IntegerField(verbose_name="7.4", null=False, blank=False, default=0, choices=choices)
|
||||
v74.visible_default = False
|
||||
v80 = models.IntegerField(verbose_name="8.0", null=False, blank=False, default=0, choices=choices)
|
||||
v80.visible_default = False
|
||||
v81 = models.IntegerField(verbose_name="8.1", null=False, blank=False, default=0, choices=choices)
|
||||
v82 = models.IntegerField(verbose_name="8.2", null=False, blank=False, default=0, choices=choices)
|
||||
v83 = models.IntegerField(verbose_name="8.3", null=False, blank=False, default=0, choices=choices)
|
||||
|
Reference in New Issue
Block a user