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