live-forum/server/admin/数据库脚本/v1.2.0_realname_admin_menu.sql
2026-03-24 11:27:37 +08:00

13 lines
823 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.

-- v1.2.0 实名认证管理 - 后台菜单升级脚本
-- 目标数据库zradmindb后台管理系统
-- =============================================
-- 新增「实名认证管理」菜单与CDK管理同级parentId=1233 系统配置)
IF NOT EXISTS (SELECT 1 FROM sys_menu WHERE path = 'realname-settings' AND parentId = 1233)
BEGIN
INSERT INTO sys_menu (menuName, parentId, orderNum, path, component, menuType, visible, status, perms, icon, isFrame, isCache, create_by, create_time, update_by, update_time, remark)
VALUES (N'实名认证管理', 1233, 11, 'realname-settings', 'liveforum/realname-settings', 'C', '0', '0', 'settings:query', 'peoples', 1, 0, 'admin', GETDATE(), 'admin', GETDATE(), N'实名认证配置与记录管理');
END
PRINT 'v1.2.0 后台菜单升级脚本执行完成';