func/common/files/lamp-sql
2024-08-14 20:52:26 -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;