initial commit 2

This commit is contained in:
equippedcoding-master
2025-09-17 15:19:57 -05:00
parent e2c98790b2
commit 1c59875b8a
55391 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CREATE DATABASE IF NOT EXISTS appfactorystudiodb;
CREATE USER 'appfactorystudio'@'localhost' IDENTIFIED BY 'MYblessings1984!';
GRANT ALL ON appfactorystudiodb.* TO 'appfactorystudio'@'localhost';
CREATE DATABASE IF NOT EXISTS testdb;
CREATE USER 'appfactorystudio'@'localhost' IDENTIFIED BY 'MYblessings1984!';
GRANT ALL ON testdb.* TO 'appfactorystudio'@'localhost';