Files
photos/.devcontainer/dbinit/fix.sql

6 lines
210 B
SQL
Executable File

FLUSH PRIVILEGES ;
DROP USER ''@'localhost' ;
create database if not exists `photostestdb` ;
grant all privileges on `photostestdb`.* to 'photostestuser'@'%' identified by 'photostestpass' ;
FLUSH PRIVILEGES ;