소스 검색

Add migration for status column in files table

Timothy Pomeroy 4 주 전
부모
커밋
94d65f9d90
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      data/migrations/2026-01-06T00-53-48_add_status_column_to_files.sql

+ 6 - 0
data/migrations/2026-01-06T00-53-48_add_status_column_to_files.sql

@@ -0,0 +1,6 @@
+-- Migration: add_status_column_to_files
+-- Created at: 2026-01-06T00:53:48.140Z
+
+-- Add status column to files table for tracking file processing status
+ALTER TABLE files ADD COLUMN status TEXT DEFAULT 'pending';
+