DB Updates

This commit is contained in:
Hondacrx
2024-09-02 22:53:50 -04:00
parent f7b184dd1d
commit 213e1bc968
414 changed files with 254129 additions and 40 deletions
+27
View File
@@ -0,0 +1,27 @@
REVOKE ALL PRIVILEGES ON * . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `world` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `world` . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `characters` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `characters` . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `auth` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `auth` . * FROM 'trinity'@'localhost';
REVOKE ALL PRIVILEGES ON `hotfixes` . * FROM 'trinity'@'localhost';
REVOKE GRANT OPTION ON `hotfixes` . * FROM 'trinity'@'localhost';
DROP USER 'trinity'@'localhost';
DROP DATABASE IF EXISTS `world`;
DROP DATABASE IF EXISTS `characters`;
DROP DATABASE IF EXISTS `auth`;
DROP DATABASE IF EXISTS `hotfixes`;