From c2ee6a7f16cde1a5f7c2e53814a6044f24be335d Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Tue, 16 Apr 2019 16:39:12 +0000 Subject: [PATCH] Mention in INSTALL that Vervis needs PostgreSQL 9.5 or above That's because insertBy' relies on insertUnique being done atomically, which requires ON CONFLICT support, a feature that came with PostgreSQL 9.5. --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index f3c4f54..2404ebe 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -55,7 +55,7 @@ Generate a new SSH key with a blank password: $ ssh-keygen -t rsa -f config/ssh-host-key Install PostgreSQL. You'll need the server and the client library development -files. +files. Note that PostgreSQL needs to be at least version 9.5. $ sudo apt install postgresql libpq-dev