Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikezaccardo/982fc76163f97af368f8 to your computer and use it in GitHub Desktop.
Save mikezaccardo/982fc76163f97af368f8 to your computer and use it in GitHub Desktop.
Artifactory SQL Template
CREATE DATABASE artdb CHARACTER SET utf8 COLLATE utf8_bin;
GRANT ALL ON artdb.* TO 'USER_HERE'@'localhost' IDENTIFIED BY 'PASSWORD_HERE';
GRANT ALL ON artdb.* TO 'USER_HERE'@'%' IDENTIFIED BY 'PASSWORD_HERE';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment