5 lines
121 B
SQL
5 lines
121 B
SQL
create user npm identified by '<passwort>';
|
|
create database npm;
|
|
grant all privileges on npm.* to npm;
|
|
flush privileges;
|