Files
nl-blogs/server/migrations/add_work_links_field.sql
2026-01-19 20:21:09 +08:00

4 lines
177 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.
-- 为works表添加links字段如果不存在
ALTER TABLE `works`
ADD COLUMN IF NOT EXISTS `links` TEXT NULL COMMENT '作品链接JSON格式' AFTER `description`;