build(docker/database): add password to postgres uniworx user in schema

This commit is contained in:
Sarah Vaupel 2024-10-01 09:58:23 +02:00
parent 3c6af00f43
commit 09e53fda53

View File

@ -1,4 +1,4 @@
CREATE USER uniworx WITH SUPERUSER;
CREATE USER uniworx WITH SUPERUSER PASSWORD 'uniworx';
CREATE DATABASE uniworx_test;
GRANT ALL ON DATABASE uniworx_test TO uniworx;
CREATE DATABASE uniworx;