1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00
iiab/roles/phpmyadmin/templates/mkuser
2021-10-06 18:10:07 +01:00

3 lines
120 B
Text

CREATE USER 'Admin'@'localhost' IDENTIFIED BY 'changeme';
GRANT SELECT ON *.* TO 'Admin'@'localhost';
FLUSH PRIVILEGES;