Last active
June 4, 2023 01:40
-
-
Save deevis/f45d695f96f15293063d7e0620677661 to your computer and use it in GitHub Desktop.
New MySQL (MariaDB) Schema/User
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create database prisoners; | |
CREATE USER 'prisoners'@'%' IDENTIFIED BY '???????????'; | |
GRANT ALL PRIVILEGES ON prisoners.* TO 'prisoners'@'%' WITH GRANT OPTION; | |
FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment