7 lines
125 B
MySQL
7 lines
125 B
MySQL
![]() |
create database contrib;
|
||
|
create user contrib_root@'%' identified by '123abc';
|
||
|
grant all on contrib.* to contrib_root@'%';
|
||
|
|
||
|
|
||
|
|