toolkit/func/common/files/lamp-sql
2021-07-04 23:50:25 -07:00

6 lines
179 B
Plaintext

create database obsidiancore;
use obsidiancore;
create table tests (name varchar(20)) ;
grant all on obsidiancore.* to 'rocky'@'localhost' identified by 'onyx';
flush privileges;