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"} {"name":"second","path":"__DIR__/videos2"}
], ],
"db": { "db": {
"host": "localhost", "host": "127.0.0.1",
"user": "majesticflame", "user": "majesticflame",
"password": "", "password": "",
"database": "ccio", "database": "ccio",

View File

@ -4,8 +4,8 @@
-- Create Database -- Create Database
CREATE DATABASE IF NOT EXISTS `ccio`; CREATE DATABASE IF NOT EXISTS `ccio`;
-- Create User for Database -- 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 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 -- Refresh SQL Authorization
FLUSH PRIVILEGES; FLUSH PRIVILEGES;