Skip to content

Instantly share code, notes, and snippets.

@bserem
Created April 3, 2015 14:28
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 bserem/1f3a530123cb2835343e to your computer and use it in GitHub Desktop.
Save bserem/1f3a530123cb2835343e to your computer and use it in GitHub Desktop.
Create dabatase and grant permissions
CREATE USER 'workshop'@'localhost' IDENTIFIED BY 'workshop';
CREATE DATABASE workshop;
GRANT ALL PRIVILEGES ON workshop.* TO 'workshop'@'localhost';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment