fix: honor target image size across compression paths
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
237899745
2026-07-26 12:14:05 +08:00
parent 72f36c631e
commit 66454b6325
7 changed files with 344 additions and 22 deletions

View File

@@ -0,0 +1,6 @@
ALTER TABLE tasks
ADD COLUMN target_size_bytes BIGINT;
ALTER TABLE tasks
ADD CONSTRAINT tasks_target_size_bytes_check
CHECK (target_size_bytes IS NULL OR target_size_bytes >= 1024);