-- Car Wash review outbox (wiki/concepts/vision-review-outbox.md): plate-blurred vehicle -- crops + the operator's category choice, queued for a trusted remote reviewer and drained -- one-way over the private overlay. The image is cleared once delivered. CREATE TABLE `carwash_review_outbox` ( `id` text PRIMARY KEY NOT NULL, `order_id` text NOT NULL, `created_at` text NOT NULL, `status` text DEFAULT 'queued' NOT NULL, `attempts` integer DEFAULT 0 NOT NULL, `next_attempt_at` text, `last_error` text, `sent_at` text, `image` blob, `payload` text NOT NULL ); --> statement-breakpoint CREATE INDEX `carwash_review_outbox_status_idx` ON `carwash_review_outbox` (`status`,`next_attempt_at`);