Add support for postgres 10 and drop support for postgres 9.2

https://www.postgresql.org/support/versioning/
This commit is contained in:
Dale Hui 2018-08-12 15:54:21 -07:00
parent 4092e160a4
commit dd00ca926e
1 changed files with 1 additions and 1 deletions

View File

@ -18,11 +18,11 @@ import (
) )
var versions = []mt.Version{ var versions = []mt.Version{
{Image: "postgres:10"},
{Image: "postgres:9.6"}, {Image: "postgres:9.6"},
{Image: "postgres:9.5"}, {Image: "postgres:9.5"},
{Image: "postgres:9.4"}, {Image: "postgres:9.4"},
{Image: "postgres:9.3"}, {Image: "postgres:9.3"},
{Image: "postgres:9.2"},
} }
func pgConnectionString(host string, port uint) string { func pgConnectionString(host string, port uint) string {