Fully tested the remote database

Updated the base docker image
This commit is contained in:
2024-05-03 09:28:39 +10:00
parent 9367999ef2
commit 22735a9ea6
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#use this while debugging
CREATE DATABASE IF NOT EXISTS news;
CREATE USER IF NOT EXISTS 'news'@'%' IDENTIFIED BY 'venusaur';
CREATE DATABASE news;
CREATE USER 'news'@'%' IDENTIFIED BY 'venusaur';
GRANT ALL PRIVILEGES ON news.* TO 'news'@'%';