Compare commits

...

2 Commits

Author SHA1 Message Date
Trey Blancher eadfa5c675 Initial commit 2022-11-27 21:34:10 -05:00
Trey Blancher 872dd50a9f Initial commit 2022-11-27 20:42:17 -05:00
2 changed files with 14 additions and 0 deletions

7
aprilandtrey.sql Normal file
View File

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

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`;