Skip to content

Instantly share code, notes, and snippets.

@cmbaughman
Created July 19, 2017 17:36
Show Gist options
  • Save cmbaughman/5e7c1cd4cca2d8bb63924134928e5d81 to your computer and use it in GitHub Desktop.
Save cmbaughman/5e7c1cd4cca2d8bb63924134928e5d81 to your computer and use it in GitHub Desktop.
Create Drupal 8 Database MySQL
CREATE DATABASE database CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER username@localhost IDENTIFIED BY 'password';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES ON database.* TO 'username'@'localhost' IDENTIFIED BY 'password';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment