Skip to content

Files

Latest commit

 

History

History

reactjs-app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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';