Skip to content

Instantly share code, notes, and snippets.

@pateketrueke
Created November 13, 2013 05:41
Show Gist options
  • Save pateketrueke/7444298 to your computer and use it in GitHub Desktop.
Save pateketrueke/7444298 to your computer and use it in GitHub Desktop.
MySQL snippets (WUT)
CREATE DATABASE <dbname>;
CREATE USER '<dbuser>'@'localhost' IDENTIFIED BY '<password>';
GRANT ALL PRIVILEGES ON <dbname> . * TO '<dbuser>'@'localhost';
REVOKE ALL PRIVILEGES ON <dbname> . * FROM '<dbuser>'@'localhost';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment