PaperMate / supabase /migrations /20260628_add_progress_step.sql
ntphuc149's picture
feat: add 5-step submission tracker with live polling to my_submissions page
dc8a030
Raw
History Blame
277 Bytes
-- Add progress_step to submissions for user-facing pipeline tracking.
-- Values: 1=Submitted, 2=Reading your paper, 3=Researching the literature,
-- 4=Drafting review, 5=Review ready
ALTER TABLE submissions
ADD COLUMN IF NOT EXISTS progress_step smallint DEFAULT 1;