From a5066f9d84d2bb4c792f8e66fe28d806e5558dc6 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 4 Apr 2025 09:02:33 +0200 Subject: [PATCH] feat(database): add sloth database initialization script Adds the creation of the sloth database to the Postgres initialization script to ensure that it is available for use in the application. --- kind/postgres.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/kind/postgres.yaml b/kind/postgres.yaml index 8c16f4c..99ffc9a 100644 --- a/kind/postgres.yaml +++ b/kind/postgres.yaml @@ -31,6 +31,7 @@ data: CREATE DATABASE time WITH OWNER postgres ENCODING utf8; CREATE DATABASE dancefinder WITH OWNER postgres ENCODING utf8; CREATE DATABASE hifi WITH OWNER postgres ENCODING utf8; + CREATE DATABASE sloth WITH OWNER postgres ENCODING utf8; EOSQL --- apiVersion: apps/v1