Files
Mycontent/soul-api/scripts/add-chapters-is-new.sql
2026-03-07 22:58:43 +08:00

9 lines
479 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.

-- ============================================================
-- stitch_soul P0chapters 表新增 is_new 字段
-- 用途:目录/首页「最新新增」标识,管理端可勾选
-- 执行前请先备份数据库!
-- ============================================================
-- 新增 is_new 字段(若列已存在会报 Duplicate column name可忽略
ALTER TABLE chapters ADD COLUMN is_new TINYINT(1) NULL DEFAULT 0 COMMENT '是否标记为最新新增';