Blame view

Antis.Erp.Plat/douyin/create_database.sql 362 Bytes
f946e9dd   hexiaodong   hhh
1
2
3
4
5
6
7
8
9
  -- 创建数据库脚本
  -- 使用方法:在 MySQL 客户端中执行此脚本,或使用以下命令:
  -- mysql -h localhost -P 55010 -u root -p1234.com < create_database.sql
  
  CREATE DATABASE IF NOT EXISTS DouyinLogistics CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
  
  USE DouyinLogistics;
  
  -- 数据库创建成功后,后端会自动创建表结构