Fully tested the remote database

Updated docker base image
This commit is contained in:
2024-05-03 09:27:29 +10:00
parent 582c0b453c
commit 2e8c3f98ca
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 chat;
CREATE USER IF NOT EXISTS 'chat'@'%' IDENTIFIED BY 'blastoise';
CREATE DATABASE chat;
CREATE USER 'chat'@'%' IDENTIFIED BY 'blastoise';
GRANT ALL PRIVILEGES ON chat.* TO 'chat'@'%';