Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created March 13, 2020 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpscholar/620255b0266316b3d72cf95fd81184c4 to your computer and use it in GitHub Desktop.
Save wpscholar/620255b0266316b3d72cf95fd81184c4 to your computer and use it in GitHub Desktop.
Create a MySQL database
CREATE DATABASE <name>;
GRANT ALL PRIVILEGES ON <name>.* TO "<user>"@"localhost";
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment