Skip to content

Instantly share code, notes, and snippets.

@ulises-jeremias
Created October 18, 2023 17:16
Show Gist options
  • Save ulises-jeremias/09ac145911c310a0846e60070d5c42df to your computer and use it in GitHub Desktop.
Save ulises-jeremias/09ac145911c310a0846e60070d5c42df to your computer and use it in GitHub Desktop.
CREATE DATABASE IF NOT EXISTS wordpress;
USE wordpress;
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'example' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment