Files
KiloStar/alembic/versions
zhaoxi 8f1398c591 feat: 人设模板系统、节点调度标签、pydantic-settings收敛、错误处理增强
新增persona_template表和CRUD API,BaseIndividualModel增加node_affinity和template_origin_id字段,
WorkerCluster支持多集群Ray资源调度,环境变量收敛到pydantic-settings统一校验,
数据库异常转换为结构化BusinessError/RetryableError,系统节点支持custom_system_prompt。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-04 06:07:46 +00:00
..
2026-05-31 15:39:34 +00:00

Alembic versions

迁移脚本会被自动生成到这个目录。

常用命令(在项目根目录运行):

  • 生成 baseline(首次接入,已有数据库): alembic stamp head

  • 自动检测 ORM 与 DB 差异并生成迁移: alembic revision --autogenerate -m "your message"

  • 应用所有未执行的迁移: alembic upgrade head

  • 回滚一个版本: alembic downgrade -1

  • 查看历史: alembic history --verbose