toolkit/func/common/files/lamp-sql

6 lines
179 B
Plaintext
Raw Permalink Normal View History

2021-07-05 06:50:25 +00:00
create database obsidiancore;
use obsidiancore;
create table tests (name varchar(20)) ;
grant all on obsidiancore.* to 'rocky'@'localhost' identified by 'onyx';
flush privileges;