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.
This commit is contained in:
2025-04-04 09:02:33 +02:00
parent 4cafb3aeb9
commit a5066f9d84
+1
View File
@@ -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