hyapp-server/server/admin/migrations/114_game_win_floating_screen_navigation.sql
2026-07-20 20:18:59 +08:00

17 lines
797 B
SQL

-- 飘屏配置复用 APP 配置读写权限;阈值事实由 activity-service 按 app_code 持久化,后台库只保存导航。
SET @now_ms := CAST(UNIX_TIMESTAMP(CURRENT_TIMESTAMP(3)) * 1000 AS UNSIGNED);
INSERT INTO admin_menus (parent_id, title, code, path, icon, permission_code, sort, visible, created_at_ms, updated_at_ms)
SELECT parent.id, '飘屏配置', 'app-config-floating-screen', '/app-config/floating-screen', 'campaign', 'app-config:view', 71, TRUE, @now_ms, @now_ms
FROM admin_menus parent
WHERE parent.code = 'app-config'
ON DUPLICATE KEY UPDATE
parent_id = VALUES(parent_id),
title = VALUES(title),
path = VALUES(path),
icon = VALUES(icon),
permission_code = VALUES(permission_code),
sort = VALUES(sort),
visible = VALUES(visible),
updated_at_ms = @now_ms;