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:
parent
129907fcc6
commit
ba68cfc75d
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue