Spaces:
Running
Running
File size: 973 Bytes
4dc70fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | -- Migration: Add reasoning type and tool_status to opencode_message_parts
-- Run this in Supabase SQL Editor
-- 1. Add tool_status column
ALTER TABLE opencode_message_parts
ADD COLUMN IF NOT EXISTS tool_status TEXT;
-- 2. Update type check constraint to include 'reasoning'
-- First, drop the existing constraint
ALTER TABLE opencode_message_parts
DROP CONSTRAINT IF EXISTS opencode_message_parts_type_check;
-- Then, create new constraint with 'reasoning' type included
ALTER TABLE opencode_message_parts
ADD CONSTRAINT opencode_message_parts_type_check
CHECK (type IN ('text', 'tool_call', 'tool_result', 'reasoning'));
-- 3. Add index for tool_status (optional, for filtering)
CREATE INDEX IF NOT EXISTS idx_opencode_message_parts_tool_status
ON opencode_message_parts(tool_status)
WHERE tool_status IS NOT NULL;
-- Verify the changes
-- SELECT column_name, data_type, is_nullable
-- FROM information_schema.columns
-- WHERE table_name = 'opencode_message_parts';
|