mirror of
https://github.com/Ratstail91/sineql-demo.git
synced 2026-05-05 23:30:11 +10:00
4 lines
154 B
SQL
4 lines
154 B
SQL
CREATE DATABASE IF NOT EXISTS sineql;
|
|
CREATE USER IF NOT EXISTS 'sineql'@'%' IDENTIFIED BY 'bulbasaur';
|
|
GRANT ALL PRIVILEGES ON sineql.* TO 'sineql'@'%';
|