Files
AIGC/demo/src/main/resources/data.sql
AIGC Developer 8404cb2b7a feat: 线程池扩容、会员注册和过期逻辑优化、API管理页面显示当前配置
- 线程池扩容:TaskQueueService 10->20, AsyncConfig 核心5->10/最大20->40/队列50->100
- 新用户注册自动创建免费会员记录(永久有效到2099年)
- 付费会员过期自动降级为免费会员并清零积分
- API管理页面显示当前API密钥(脱敏)和端点
- 修复StoryboardVideoCreate.vue语法错误
2026-01-11 21:32:33 +08:00

16 lines
672 B
SQL
Raw 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.

-- 初始化数据文件
-- 此文件用于开发/测试环境的初始数据
-- 生产环境请勿使用此文件应通过系统管理界面或API进行数据初始化
-- 注意:生产环境部署时,此文件应保持为空或仅包含必要的系统配置数据
-- ============================================
-- 超级管理员权限自动设置
-- ============================================
-- 应用启动时自动将 shanghairuiyi2026@163.com 设置为超级管理员
-- 如果该用户存在,则更新其角色为超级管理员
UPDATE users
SET role = 'ROLE_SUPER_ADMIN',
updated_at = CURRENT_TIMESTAMP
WHERE email = 'shanghairuiyi2026@163.com';