f7a720204a
- 移除 GovAI, nomifun-tauri, 算力盒子 的 submodule 引用 - 添加所有子项目的完整源代码 - 保留原始 .git 为 .git.bak 备份
35 lines
1.7 KiB
SQL
35 lines
1.7 KiB
SQL
-- 创建对话(conversations)表
|
|
CREATE TABLE IF NOT EXISTS conversations (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
app_id UUID NOT NULL REFERENCES applications(id) ON DELETE CASCADE,
|
|
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
|
title VARCHAR(500) NOT NULL,
|
|
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
updated_at TIMESTAMP NOT NULL DEFAULT NOW()
|
|
);
|
|
|
|
-- 创建消息(messages)表
|
|
CREATE TABLE IF NOT EXISTS messages (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
conversation_id UUID NOT NULL REFERENCES conversations(id) ON DELETE CASCADE,
|
|
role VARCHAR(50) NOT NULL CHECK (role IN ('user', 'assistant', 'system')),
|
|
content TEXT NOT NULL,
|
|
created_at TIMESTAMP NOT NULL DEFAULT NOW()
|
|
);
|
|
|
|
-- 创建索引以提升查询性能
|
|
CREATE INDEX IF NOT EXISTS idx_conversations_app_id ON conversations(app_id);
|
|
CREATE INDEX IF NOT EXISTS idx_conversations_user_id ON conversations(user_id);
|
|
CREATE INDEX IF NOT EXISTS idx_conversations_created_at ON conversations(created_at DESC);
|
|
CREATE INDEX IF NOT EXISTS idx_messages_conversation_id ON messages(conversation_id);
|
|
CREATE INDEX IF NOT EXISTS idx_messages_created_at ON messages(created_at);
|
|
|
|
-- 添加注释
|
|
COMMENT ON TABLE conversations IS '应用对话记录表';
|
|
COMMENT ON TABLE messages IS '对话消息表';
|
|
COMMENT ON COLUMN conversations.app_id IS '关联的应用ID';
|
|
COMMENT ON COLUMN conversations.user_id IS '发起对话的用户ID';
|
|
COMMENT ON COLUMN conversations.title IS '对话标题';
|
|
COMMENT ON COLUMN messages.conversation_id IS '所属对话ID';
|
|
COMMENT ON COLUMN messages.role IS '消息角色:user/assistant/system';
|
|
COMMENT ON COLUMN messages.content IS '消息内容'; |