1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

pg14 alias

This commit is contained in:
Robin Appelman 2022-01-24 17:20:00 +01:00
commit b26c5a164b

View file

@ -81,6 +81,7 @@ impl FromStr for Database {
"pgsql:11" => Ok(Database::Postgres11), "pgsql:11" => Ok(Database::Postgres11),
"pgsql:12" => Ok(Database::Postgres12), "pgsql:12" => Ok(Database::Postgres12),
"pgsql:13" => Ok(Database::Postgres13), "pgsql:13" => Ok(Database::Postgres13),
"pgsql:14" => Ok(Database::Postgres14),
"postgres" => Ok(Database::Postgres), "postgres" => Ok(Database::Postgres),
"postgres:9" => Ok(Database::Postgres9), "postgres:9" => Ok(Database::Postgres9),
"postgres:10" => Ok(Database::Postgres10), "postgres:10" => Ok(Database::Postgres10),