4 lines
150 B
SQL
4 lines
150 B
SQL
create database if not exists wordpress;
|
|
create user apommier@'%' identified by '1234';
|
|
grant all privileges on *.* to apommier@'%';
|
|
flush privileges; |