toolkit/func/common/files/lamp-sql

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;