Initial commit

This commit is contained in:
Trey Blancher 2022-11-27 21:34:10 -05:00
parent 872dd50a9f
commit eadfa5c675
1 changed files with 7 additions and 0 deletions

7
eldon.sql Normal file
View File

@ -0,0 +1,7 @@
CREATE OR REPLACE USER `eldon`@`%` IDENTIFIED BY 'redacted';
CREATE OR REPLACE USER `eldon`@`localhost` IDENTIFIED BY 'redacted';
CREATE DATABASE eldon;
GRANT ALL PRIVILEGES ON eldon.* TO `eldon`@`%`;
GRANT ALL PRIVILEGES ON eldon.* TO `eldon`@`localhost`;