From 43bfd5d979cf9ddb2e6eea14f1321db8226eb422 Mon Sep 17 00:00:00 2001 From: runnermatthew <35390066+runnermatthew@users.noreply.github.com> Date: Sat, 27 Aug 2022 10:45:29 -0400 Subject: [PATCH] "psql" to "pgsql" Factory is expecting "pgsql" instead of "psql" for Postgres driver --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 060f097..df559a0 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Please visit https://github.com/byjg/migration-cli to get more informations abou | --------------| ------------------------------------------------------------------------------- | -------------------------------------------------------- | | Sqlite | [pdo_sqlite](https://www.php.net/manual/en/ref.pdo-sqlite.php) | sqlite:///path/to/file | | MySql/MariaDb | [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | mysql://username:password@hostname:port/database | -| Postgres | [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | psql://username:password@hostname:port/database | +| Postgres | [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | pgsql://username:password@hostname:port/database | | Sql Server | [pdo_dblib, pdo_sysbase](https://www.php.net/manual/en/ref.pdo-dblib.php) Linux | dblib://username:password@hostname:port/database | | Sql Server | [pdo_sqlsrv](http://msdn.microsoft.com/en-us/sqlserver/ff657782.aspx) Windows | sqlsrv://username:password@hostname:port/database |