Merge pull request #208 from nicolasDonkey/patch-1

Update Mysql.sh add create user command
This commit is contained in:
Julien Le Coupanec 2021-05-13 13:22:02 +02:00 committed by GitHub
commit d8d6fa49c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -8,3 +8,5 @@ mysql -u username -p database_name < file.sql # Import d
SHOW PROCESSLIST; # Show you any queries that are currently running or in the queue to run
GRANT ALL PRIVILEGES ON prospectwith.* TO 'power'@'localhost' WITH GRANT OPTION; # Grant all privileges on database
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; # Create user