diff --git a/databases/mysql.sh b/databases/mysql.sh index 6022896..b28b272 100644 --- a/databases/mysql.sh +++ b/databases/mysql.sh @@ -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