inception/srcs/requirements/mariadb/tools/mysql2
2022-10-07 07:48:47 +02:00

4 lines
154 B
Plaintext

create database if not exists wordpress;
create user 'apommier'@'%' identified by '1234';
grant all privileges on *.* to 'apommier'@'%';
flush privileges;