게시물 Export 용량 기준 분할 추가 v1.5.25

This commit is contained in:
2026-06-01 16:20:35 +09:00
parent 5735fd5046
commit 212bd3f34f
14 changed files with 316 additions and 41 deletions

View File

@@ -0,0 +1,9 @@
ALTER TABLE post_export_jobs
ADD COLUMN IF NOT EXISTS max_file_size_bytes BIGINT NOT NULL DEFAULT 524288000;
ALTER TABLE post_export_jobs
ADD COLUMN IF NOT EXISTS error_detail TEXT NOT NULL DEFAULT '';
ALTER TABLE post_export_jobs
ADD CONSTRAINT post_export_jobs_max_file_size_bytes_check
CHECK (max_file_size_bytes >= 10485760);