Last active
April 6, 2017 20:13
-
-
Save rick4470/c8e0cd82dd685b7c168c6330db15fe42 to your computer and use it in GitHub Desktop.
Create database mysql
This file contains hidden or 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
CREATE DATABASE portfolio; | |
GRANT ALL ON portfolio.* TO 'portfolio-admin'@'localhost' IDENTIFIED BY 'SET STRONG PASSWORD'; | |
FLUSH PRIVILEGES; | |
EXIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment