mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
6 lines
210 B
SQL
Executable File
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 ;
|