Files
elixirAI/schema.sql
Alex Mickelson 25be2e5210
All checks were successful
CI/CD Pipeline / build (push) Successful in 11s
db startup
2026-03-09 15:12:10 -06:00

18 lines
677 B
SQL

CREATE TABLE IF NOT EXISTS conversations (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL UNIQUE,
inserted_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
CREATE TABLE IF NOT EXISTS messages (
id BIGSERIAL PRIMARY KEY,
conversation_id UUID NOT NULL REFERENCES conversations(id) ON DELETE CASCADE,
role TEXT NOT NULL CHECK (role IN ('user', 'assistant', 'tool')),
content TEXT,
reasoning_content TEXT,
tool_calls JSONB,
tool_call_id TEXT,
inserted_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);