mirror of https://github.com/status-im/migrate.git
Add support for postgres 10 and drop support for postgres 9.2
https://www.postgresql.org/support/versioning/
This commit is contained in:
parent
4092e160a4
commit
dd00ca926e
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue