Skip to content

Instantly share code, notes, and snippets.

@emiliodallatorre
Created April 20, 2024 06:40
Show Gist options
  • Save emiliodallatorre/884cfc533ce49a23504ac41d8b5ebc26 to your computer and use it in GitHub Desktop.
Save emiliodallatorre/884cfc533ce49a23504ac41d8b5ebc26 to your computer and use it in GitHub Desktop.
CREATE DATABASE wordpress;
CREATE USER wordpress@localhost IDENTIFIED BY '<your-password>';
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER ON wordpress.* TO wordpress@localhost;
FLUSH PRIVILEGES;
quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment