mirror of
https://github.com/rommapp/romm.git
synced 2026-03-10 10:17:01 +00:00
5 lines
199 B
SQL
5 lines
199 B
SQL
CREATE DATABASE IF NOT EXISTS romm_test;
|
|
CREATE USER IF NOT EXISTS 'romm_test'@'%' IDENTIFIED BY 'passwd';
|
|
GRANT ALL PRIVILEGES ON romm_test.* TO 'romm_test'@'%' WITH GRANT OPTION;
|
|
FLUSH PRIVILEGES;
|