fix(migration): add statement-breakpoint between CREATE and INSERT

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>
This commit is contained in:
Thomas Hallock 2025-12-18 07:18:50 -06:00
parent 129907fcc6
commit ba68cfc75d
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ CREATE TABLE `app_settings` (
`id` text PRIMARY KEY DEFAULT 'default' NOT NULL, `id` text PRIMARY KEY DEFAULT 'default' NOT NULL,
`bkt_confidence_threshold` real DEFAULT 0.3 NOT NULL `bkt_confidence_threshold` real DEFAULT 0.3 NOT NULL
); );
--> statement-breakpoint
-- Insert the default row -- Insert the default row
INSERT INTO `app_settings` (`id`, `bkt_confidence_threshold`) VALUES ('default', 0.3); INSERT INTO `app_settings` (`id`, `bkt_confidence_threshold`) VALUES ('default', 0.3);