Skip to content

Instantly share code, notes, and snippets.

@codecats
Created July 9, 2014 12:51
Show Gist options
  • Save codecats/d12305e613c61bd077bd to your computer and use it in GitHub Desktop.
Save codecats/d12305e613c61bd077bd to your computer and use it in GitHub Desktop.
console create db mysql
CREATE DATABASE `mydb` CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL ON `mydb`.* TO `username`@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment