6 lines
213 B
SQL
6 lines
213 B
SQL
-- This script ensures the user has correct privileges.
|
|
-- The user is actually created by the official MySQL image using environment variables.
|
|
|
|
GRANT ALL PRIVILEGES ON *.* TO 'escapepage'@'%';
|
|
FLUSH PRIVILEGES;
|