Create mas database in postgres initialScript

This commit is contained in:
Fiona Grzebien 2024-11-08 01:22:57 +01:00
parent c6913d2be5
commit 94e279094a

View file

@ -8,6 +8,11 @@
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
CREATE ROLE "mas_user" WITH LOGIN PASSWORD 'mas';
CREATE DATABASE "mas" WITH OWNER "mas_user"
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
'';
};
}