Spaces:
Running
Running
File size: 414 Bytes
5bf2571 | 1 2 3 4 5 6 7 8 9 10 | -- Add processing progress tracking columns to documents table
ALTER TABLE documents
ADD COLUMN IF NOT EXISTS processing_progress INTEGER DEFAULT 0,
ADD COLUMN IF NOT EXISTS processing_stage TEXT DEFAULT 'Pending';
-- Add comment
COMMENT ON COLUMN documents.processing_progress IS 'Processing progress percentage (0-100)';
COMMENT ON COLUMN documents.processing_stage IS 'Current processing stage description';
|