Files
MERN-template/tools/create_database.sql
T
Ratstail91 cd34f0db5c Fully tested the remote database
Added default host for the admin account
2024-05-03 09:22:45 +10:00

6 lines
159 B
SQL

#use this while debugging
CREATE DATABASE template;
CREATE USER 'template'@'%' IDENTIFIED BY 'pikachu';
GRANT ALL PRIVILEGES ON template.* TO 'template'@'%';