undo Doomsdayrs-master-patch-84456
parent
74f9d54273
commit
1fba3ffc85
|
@ -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",
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue