forked from sig_core/toolkit
6 lines
179 B
Text
6 lines
179 B
Text
|
create database obsidiancore;
|
||
|
use obsidiancore;
|
||
|
create table tests (name varchar(20)) ;
|
||
|
grant all on obsidiancore.* to 'rocky'@'localhost' identified by 'onyx';
|
||
|
flush privileges;
|