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);