From ec93dba8df6656457154576ca8b9a85c0ecea4e4 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Mon, 20 May 2024 07:45:54 +0200 Subject: [PATCH] feat: add supplier_invoice database creation to postgres.yaml --- postgres.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres.yaml b/postgres.yaml index f8de69a..9aa4847 100644 --- a/postgres.yaml +++ b/postgres.yaml @@ -27,6 +27,7 @@ data: CREATE DATABASE notification WITH OWNER postgres ENCODING utf8; CREATE DATABASE salary WITH OWNER postgres ENCODING utf8; CREATE DATABASE supplier WITH OWNER postgres ENCODING utf8; + CREATE DATABASE supplier_invoice WITH OWNER postgres ENCODING utf8; CREATE DATABASE time WITH OWNER postgres ENCODING utf8; CREATE DATABASE dancefinder WITH OWNER postgres ENCODING utf8; CREATE DATABASE hifi WITH OWNER postgres ENCODING utf8;