litemall_schema.sql 373 B

12345678
  1. drop database if exists litemall;
  2. drop user if exists 'litemall'@'%';
  3. -- 支持emoji:需要mysql数据库参数: character_set_server=utf8mb4
  4. create database litemall default character set utf8mb4 collate utf8mb4_unicode_ci;
  5. use litemall;
  6. create user 'litemall'@'%' identified by 'litemall123456';
  7. grant all privileges on litemall.* to 'litemall'@'%';
  8. flush privileges;