soroban-abacus-flashcards/apps/web/drizzle/0035_cold_slapstick.sql

10 lines
319 B
SQL

-- App-wide settings table (single row)
CREATE TABLE `app_settings` (
`id` text PRIMARY KEY DEFAULT 'default' NOT NULL,
`bkt_confidence_threshold` real DEFAULT 0.3 NOT NULL
);
--> statement-breakpoint
-- Insert the default row
INSERT INTO `app_settings` (`id`, `bkt_confidence_threshold`) VALUES ('default', 0.3);