Files
docker/nginx/createdb.sql
2023-11-10 09:56:54 +01:00

5 lines
121 B
SQL

create user npm identified by '<passwort>';
create database npm;
grant all privileges on npm.* to npm;
flush privileges;