Skip to content

Instantly share code, notes, and snippets.

@squeejee
Created May 18, 2009 02:49
Show Gist options
  • Save squeejee/113279 to your computer and use it in GitHub Desktop.
Save squeejee/113279 to your computer and use it in GitHub Desktop.
$ mysql -uroot p
mysql> CREATE USER integrity INDENTIFIED BY PASSWORD 'mypassword123';
mysql> CREATE DATABASE my_cool_application_test;
mysql> GRANT ALL ON my_cool_application_test.* TO 'integrity'@localhost IDENTIFIED BY 'mypassword123';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment