feat: 添加 conversations 和 messages 表用于存储应用示例对话数据
- 创建 conversations 表(对话记录) - 创建 messages 表(对话消息) - 添加必要的索引和外键约束 - 为 seed_fazhiribao_demo_data.sql 准备表结构
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
-- 回滚:删除 messages 表
|
||||
DROP TABLE IF EXISTS messages;
|
||||
|
||||
-- 回滚:删除 conversations 表
|
||||
DROP TABLE IF EXISTS conversations;
|
||||
Reference in New Issue
Block a user