From 7a7689cd29c68521d036c4d1fc5215e9146fe289 Mon Sep 17 00:00:00 2001 From: SpareChris <58488310+SpareChris@users.noreply.github.com> Date: Fri, 3 Jan 2020 11:12:56 -0800 Subject: [PATCH] Added config requirements for db-migrate-pg Postgres users also need to have psql driver install. Updating DOCs to reflect this requirement. --- docs/Getting Started/configuration.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/Getting Started/configuration.md b/docs/Getting Started/configuration.md index ac5de27..7587709 100644 --- a/docs/Getting Started/configuration.md +++ b/docs/Getting Started/configuration.md @@ -139,3 +139,9 @@ If you use MySQL, to be able to use multiple statements in your sql file, you ha } } ``` + +## Important - For Postgresql (PSQL) users +You'll need to install db-migrate-pg which provides the psql driver: +``` +npm install --save db-migrate-pg +```