Drizzle's better-sqlite3 driver requires --> statement-breakpoint markers between SQL statements in migration files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
319 B
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);
|