From 4a12d6915132bcc5145fca00b45b4abb423b4563 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 14 Oct 2025 12:01:17 +0200 Subject: [PATCH] feat(database): add tax database creation to postgres.yaml Adds the creation of the 'tax' database in the Postgres configuration to enhance data management capabilities for financial transactions. This change improves the database structure and prepares for future data requirements. --- kind/postgres.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/kind/postgres.yaml b/kind/postgres.yaml index 97b214a..40a3542 100644 --- a/kind/postgres.yaml +++ b/kind/postgres.yaml @@ -28,6 +28,7 @@ data: 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 tax 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;