Files
st/server/initialize/fix_world_info_table.sql
2026-02-11 23:44:09 +08:00

10 lines
303 B
Go
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.

-- 修复 ai_world_info 表结构
-- 如果表存在旧的 name 字段需要删除并重新创建
-- 删除旧表如果存在
DROP TABLE IF EXISTS ai_character_world_info CASCADE;
DROP TABLE IF EXISTS ai_world_info CASCADE;
-- 表将由 Gorm AutoMigrate 自动创建
-- 重启服务器即可