mirror of
https://github.com/OregonCore/OregonCore
synced 2026-08-18 00:23:08 -04:00
20 lines
No EOL
749 B
SQL
20 lines
No EOL
749 B
SQL
-- --------------------------------------------- --
|
|
-- Oregon Script to Remove MySQL User and Tables --
|
|
-- --------------------------------------------- --
|
|
|
|
REVOKE ALL PRIVILEGES ON * . * FROM 'oregon'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `world` . * FROM 'oregon'@'localhost';
|
|
REVOKE GRANT OPTION ON `world` . * FROM 'oregon'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `characters` . * FROM 'oregon'@'localhost';
|
|
REVOKE GRANT OPTION ON `characters` . * FROM 'oregon'@'localhost';
|
|
|
|
REVOKE ALL PRIVILEGES ON `realmd` . * FROM 'oregon'@'localhost';
|
|
REVOKE GRANT OPTION ON `realmd` . * FROM 'oregon'@'localhost';
|
|
|
|
DROP USER 'oregon'@'localhost';
|
|
|
|
DROP DATABASE IF EXISTS `world` ;
|
|
DROP DATABASE IF EXISTS `characters` ;
|
|
DROP DATABASE IF EXISTS `realmd` ; |