deploy-ease-platform/backend/src/main/resources/db/changelog/sql/20251209141300-01.sql
dengqichen 972f064c16 1.45
2025-12-29 11:07:44 +08:00

21 lines
918 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.1
-- 功能记录Jenkins日志优化版本
-- 作者qqchen
-- 日期2025-12-09 14:13
-- --------------------------------------------------------------------------------------
-- 插入 1.1 日志优化发布记录
INSERT INTO system_release (
create_by, create_time, update_by, update_time, version, deleted,
release_version, module, release_date, changes, notified, delay_minutes, estimated_duration, enable_auto_shutdown
)
VALUES (
'system', NOW(), 'system', NOW(), 1, 0,
1.45, 'ALL', NOW(),
'【后端】
- 应用分页接口新增 enabledCount 和 disabledCount 统计字段,与 totalElements 同级返回。前端可在响应的 data 对象中直接获取这两个字段,用于展示已启用和已禁用应用的总数统计。
',
0, NULL, NULL, 0
);