-- Car Wash module: site-level settings singleton. `pay_at` decides WHERE wash money is -- taken at this site (booth = on the parking ticket; bay = the wash operator's own till) -- — a Setup → Car wash choice, no longer a per-order radio on the desk (user, 2026-09-05). CREATE TABLE `carwash_config` ( `id` integer PRIMARY KEY NOT NULL, `pay_at` text DEFAULT 'booth' NOT NULL, `updated_at` text, `updated_by` text ); --> statement-breakpoint INSERT INTO `carwash_config` (`id`, `pay_at`) VALUES (1, 'booth');