mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-28 05:33:27 +08:00
7 lines
222 B
SQL
Executable File
7 lines
222 B
SQL
Executable File
DROP DATABASE IF EXISTS acceptance;
|
|
CREATE DATABASE IF NOT EXISTS acceptance;
|
|
CREATE USER IF NOT EXISTS acceptance@'%' IDENTIFIED BY 'acceptance';
|
|
GRANT ALL PRIVILEGES ON acceptance.* TO acceptance@'%';
|
|
|
|
FLUSH PRIVILEGES;
|