Initial commit

This commit is contained in:
Trey Blancher 2022-11-27 20:42:17 -05:00
parent 146b00ed43
commit 872dd50a9f
1 changed files with 7 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`;