Files
2026-08-08 17:19:44 +08:00

10 lines
560 B
SQL
Raw Permalink 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.
-- 存量站点迁移:为 pages 表增加 mode 字段(固定版面 fixed / 可视化编辑 builder
-- 执行方式(二选一):
-- A. 宝塔 / phpMyAdmin:直接运行本文件 SQL
-- B. 命令行:mysql -u<用户> -p<库名> < install/pages-add-mode.sql
-- 说明:默认 'fixed',旧数据(用 content 正文渲染)行为不变;
-- 仅当页面用可视化编辑器存过 layout 时,建议手动将该页 mode 置为 'builder'。
ALTER TABLE `pages`
ADD COLUMN `mode` VARCHAR(16) NOT NULL DEFAULT 'fixed' AFTER `layout`;