Skip to content

Instantly share code, notes, and snippets.

@akofink
Created January 28, 2013 22:43
Show Gist options
  • Save akofink/4659997 to your computer and use it in GitHub Desktop.
Save akofink/4659997 to your computer and use it in GitHub Desktop.
Give permission to a user in mysql.
create database pg_development;
create database pg_test;
create user expertiza@localhost;
grant all on pg_development.* to expertiza@localhost;
grant all on pg_test.* to expertiza@localhost;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment