Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save junmakii/ea85c405e3366b348a88 to your computer and use it in GitHub Desktop.

Select an option

Save junmakii/ea85c405e3366b348a88 to your computer and use it in GitHub Desktop.
create database {{ database_name }};
create user '{{ user_name }}'@'{{ host }}' identified by '{{ password }}';
grant all privileges on `{{ database_name }}`.* to '{{ user_name }}'@'{{ host }}';
flush privileges;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment