Compare commits

..

No commits in common. "6e8b755f3821df1c33ba55eb7f41bd26200985ee" and "6df483b0b0f458c5e34c9b06caec843fbd6baf43" have entirely different histories.

View File

@ -2,8 +2,3 @@
-- This file runs first to ensure proper migration ordering -- This file runs first to ensure proper migration ordering
SELECT 'Database migration starting for hades_db' AS message; SELECT 'Database migration starting for hades_db' AS message;
-- Create hades_user for app connections (shared MySQL only has mysql_user)
CREATE USER IF NOT EXISTS 'hades_user'@'%' IDENTIFIED BY 'local-hades-pass';
GRANT ALL PRIVILEGES ON hades_db.* TO 'hades_user'@'%';
FLUSH PRIVILEGES;