undo Doomsdayrs-master-patch-84456

alpha
Moe 2024-04-30 09:19:28 -07:00
parent 74f9d54273
commit 1fba3ffc85
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
{"name":"second","path":"__DIR__/videos2"}
],
"db": {
"host": "localhost",
"host": "127.0.0.1",
"user": "majesticflame",
"password": "",
"database": "ccio",

View File

@ -4,8 +4,8 @@
-- Create Database
CREATE DATABASE IF NOT EXISTS `ccio`;
-- Create User for Database
CREATE USER 'majesticflame'@'localhost' IDENTIFIED BY '';
CREATE USER 'majesticflame'@'127.0.0.1' IDENTIFIED BY '';
-- Grant Permissions to User for Database
GRANT ALL PRIVILEGES ON ccio.* TO 'majesticflame'@'localhost';
GRANT ALL PRIVILEGES ON ccio.* TO 'majesticflame'@'127.0.0.1';
-- Refresh SQL Authorization
FLUSH PRIVILEGES;