Files
litemall/litemall-db/sql/litemall_schema.sql

7 lines
264 B
SQL

drop database if exists litemall;
drop user if exists 'litemall'@'localhost';
create database litemall;
use litemall;
create user 'litemall'@'localhost' identified by 'litemall123456';
grant all privileges on litemall.* to 'litemall'@'localhost';
flush privileges;