fix: honor target image size across compression paths
Some checks failed
CI / verify (push) Has been cancelled
Some checks failed
CI / verify (push) Has been cancelled
This commit is contained in:
6
migrations/027_task_target_size.sql
Normal file
6
migrations/027_task_target_size.sql
Normal 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);
|
||||
Reference in New Issue
Block a user