Skip to content

Instantly share code, notes, and snippets.

@ThrowJojo
Created August 18, 2017 00:45
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 ThrowJojo/42f02beee7dc12b42ee099f26223328d to your computer and use it in GitHub Desktop.
Save ThrowJojo/42f02beee7dc12b42ee099f26223328d to your computer and use it in GitHub Desktop.
Create a new database, grant permissions.
create database your_database;
grant usage on *.* to username@localhost identified by 'password';
grant all privileges on your_database.* to username@localhost;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment