Files
Mycontent/soul-api/scripts/add-sort-order-to-chapters.sql

6 lines
294 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.

-- 为 chapters 表添加 sort_order 列(支持拖拽排序)
-- 执行cd 项目根目录 && node .cursor/scripts/db-exec/run.js -f soul-api/scripts/add-sort-order-to-chapters.sql
-- 若 sort_order 已存在会报错,可忽略
ALTER TABLE chapters ADD COLUMN sort_order INT DEFAULT 0;