hyapp-server/server/admin/migrations/046_first_recharge_gift_copy.sql
2026-06-11 01:02:16 +08:00

17 lines
617 B
SQL

SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;
-- 只修正后台展示文案,权限码、菜单 code 和路由保持不变,避免破坏已分配角色和前端路由映射。
SET @now_ms = CAST(UNIX_TIMESTAMP(UTC_TIMESTAMP(3)) * 1000 AS UNSIGNED);
UPDATE admin_permissions
SET name = '首充礼包查看', updated_at_ms = @now_ms
WHERE code = 'first-recharge-reward:view';
UPDATE admin_permissions
SET name = '首充礼包更新', updated_at_ms = @now_ms
WHERE code = 'first-recharge-reward:update';
UPDATE admin_menus
SET title = '首充礼包', updated_at_ms = @now_ms
WHERE code = 'first-recharge-reward';