Files
SGGL_HBAZ/DataBase/版本日志/SGGLDB_V2026-09-05-001-drop-sys_pdfpage.sql
T

17 lines
690 B
Transact-SQL
Raw Normal View History

2026-09-11 11:14:08 +08:00
-- =====================================================================
-- 删除未使用的数据表 Sys_PdfPage
-- 原因:该项目 PDF 书籍模块实际采用 Sys_PdfChapter(章节富文本 HTML)方案,
-- Sys_PdfPage 为早期"分页 OCR 文本"设计,代码中无任何引用(0 处),
-- 属于冗余表,可安全删除。
-- 幂等:表存在才删,可重复执行。
-- =====================================================================
IF OBJECT_ID(N'[dbo].[Sys_PdfPage]', N'U') IS NOT NULL
BEGIN
DROP TABLE [dbo].[Sys_PdfPage];
PRINT N'表 Sys_PdfPage 已删除';
END
ELSE
BEGIN
PRINT N'表 Sys_PdfPage 不存在,跳过';
END