Last active
November 20, 2018 15:40
-
-
Save chris-at-github/46d65d87c09c08d927f4487551bcc967 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Datenbank einrichten | |
sudo mysql -u root | |
CREATE DATABASE NAME CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |
GRANT ALL ON NAME.* TO 'USER' IDENTIFIED BY 'PASSWORT'; | |
quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment