1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/phpmyadmin/templates/mkuser

4 lines
120 B
Text
Raw Normal View History

2021-02-03 19:49:17 +00:00
CREATE USER 'Admin'@'localhost' IDENTIFIED BY 'changeme';
2021-10-06 17:10:07 +00:00
GRANT SELECT ON *.* TO 'Admin'@'localhost';
2021-02-03 19:49:17 +00:00
FLUSH PRIVILEGES;