Added proper creation of mysql user, removal of default homestead user
This commit is contained in:
3
mysql/startup
Normal file
3
mysql/startup
Normal file
@ -0,0 +1,3 @@
|
||||
DROP USER 'homestead';
|
||||
CREATE DATABASE IF NOT EXISTS MYSQL_DATABASE;
|
||||
GRANT ALL ON `MYSQL_DATABASE`.* TO 'MYSQL_USER'@'%' IDENTIFIED BY 'MYSQL_PASSWORD';
|
Reference in New Issue
Block a user