fix: create hades_user in dbinit for shared MySQL #6

Merged
sagar.patil merged 1 commits from fix/create-hades-user-in-dbinit into main 2026-04-28 09:00:37 +00:00

View File

@ -2,3 +2,8 @@
-- 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;