-- Car Wash: advisory vehicle category from vision (venue-modules.md §Vehicle category from -- vision). Categories map the vision vocabulary onto the site's own price categories; an -- order records what the camera saw, the category it suggested and the anomaly signed on a -- downgrade; the config carries the confidence floor. Recorded only — never blocks. ALTER TABLE `carwash_categories` ADD `vision_classes` text DEFAULT '[]' NOT NULL; --> statement-breakpoint ALTER TABLE `carwash_orders` ADD `vision_class` text; --> statement-breakpoint ALTER TABLE `carwash_orders` ADD `vision_confidence` real; --> statement-breakpoint ALTER TABLE `carwash_orders` ADD `vision_category_id` text; --> statement-breakpoint ALTER TABLE `carwash_orders` ADD `downgrade_event_id` text; --> statement-breakpoint ALTER TABLE `carwash_config` ADD `vision_threshold` real DEFAULT 0.8 NOT NULL;