From 47b2650a99c1c7d474054f8aef1cf7e6dde0d099 Mon Sep 17 00:00:00 2001 From: DanielLyons178 Date: Wed, 27 May 2020 12:51:34 +0100 Subject: [PATCH] Postgres: Add postgres versions 11 and 12 to version selector (#24750) Closes #24320 --- public/app/plugins/datasource/postgres/config_ctrl.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/plugins/datasource/postgres/config_ctrl.ts b/public/app/plugins/datasource/postgres/config_ctrl.ts index f31286908a7..6e17c0d4217 100644 --- a/public/app/plugins/datasource/postgres/config_ctrl.ts +++ b/public/app/plugins/datasource/postgres/config_ctrl.ts @@ -69,5 +69,7 @@ export class PostgresConfigCtrl { { name: '9.5', value: 905 }, { name: '9.6', value: 906 }, { name: '10', value: 1000 }, + { name: '11', value: 1100 }, + { name: '12', value: 1200 }, ]; }