safety-eval-service/docs/sql/init.sql

13 lines
360 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

-- =============================================
-- 安全评价业务库初始建表脚本
-- 数据库safety_eval_db
-- 字符集utf8mb4排序规则utf8mb4_0900_ai_ci
-- =============================================
CREATE DATABASE IF NOT EXISTS `safety_eval_db`
CHARACTER SET utf8mb4
COLLATE utf8mb4_0900_ai_ci;
USE `safety_eval_db`;