Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 246 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 246 Bytes

Creating a mariadb database

create database jeesample character set 'utf8mb4' collate utf8mb4_unicode_ci;
create user 'jeeuser'@'localhost' identified by 'password';
grant all privileges on jeesample.* to 'jeeuser'@'localhost';