Skip to content

Instantly share code, notes, and snippets.

@lucassmacedo
Created January 17, 2017 16:39
Show Gist options
  • Save lucassmacedo/2e5009802306b5d298cbc2ca58d9103e to your computer and use it in GitHub Desktop.
Save lucassmacedo/2e5009802306b5d298cbc2ca58d9103e to your computer and use it in GitHub Desktop.
Create new user and add permissions Mysql
CREATE USER 'cacique'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON `cacique_integracao`.* TO 'cacique'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment