mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Add "v11" to the PostgreSQL Feature Matrix.
This will allow us to populate new features added to PostgreSQL 11 earlier in the release lifecycle to help drive more awareness to what has changed.
This commit is contained in:
@ -43,6 +43,7 @@ class Feature(models.Model):
|
||||
v95 = models.IntegerField(verbose_name="9.5", null=False, blank=False, default=0, choices=choices)
|
||||
v96 = models.IntegerField(verbose_name="9.6", null=False, blank=False, default=0, choices=choices)
|
||||
v10 = models.IntegerField(verbose_name="10", null=False, blank=False, default=0, choices=choices)
|
||||
v11 = models.IntegerField(verbose_name="11", null=False, blank=False, default=0, choices=choices)
|
||||
|
||||
purge_urls = ('/about/featurematrix/.*', )
|
||||
|
||||
|
Reference in New Issue
Block a user