VWED_server/scripts/init-db.sql
2025-04-30 16:57:46 +08:00

13 lines
521 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 创建数据库(如果不存在)
CREATE DATABASE IF NOT EXISTS tianfeng_task CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-- 使用数据库
USE tianfeng_task;
-- 创建用户并授权(如果不存在)
CREATE USER IF NOT EXISTS 'tianfeng'@'%' IDENTIFIED BY 'tianfeng';
GRANT ALL PRIVILEGES ON tianfeng_task.* TO 'tianfeng'@'%';
FLUSH PRIVILEGES;
-- 初始化基础数据可以在这里添加
-- 注意大部分表结构会由SQLAlchemy自动创建这里主要是为了初始化一些基础数据