Files
website/python/fix.sql
2022-01-12 10:15:24 -05:00

3 lines
162 B
SQL
Executable File

CREATE USER '{username}' IDENTIFIED BY '{password}';
CREATE DATABASE {database};
GRANT ALL PRIVILEGES ON *.* TO '{username}'@localhost IDENTIFIED BY '{password}';