Files
PastpaperMaster/backend/add_progress_columns.sql
Zhao 7a09167261 Initial commit: PastPaper Master full stack
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-21 12:27:47 +07:00

5 lines
204 B
SQL

ALTER TABLE papers
ADD COLUMN IF NOT EXISTS processing_step text DEFAULT NULL,
ADD COLUMN IF NOT EXISTS processing_progress integer DEFAULT 0,
ADD COLUMN IF NOT EXISTS processing_total integer DEFAULT 0;