Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ next-env.d.ts
# tooling & logs
.cursor/
.claude/
.codex/
.serena/
!src/app/dashboard/logs/
!src/app/settings/logs/
Expand Down
2 changes: 1 addition & 1 deletion drizzle/0049_shocking_ultimatum.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE "message_request" ADD COLUMN "special_settings" jsonb;
ALTER TABLE "message_request" ADD COLUMN IF NOT EXISTS "special_settings" jsonb;
4 changes: 2 additions & 2 deletions drizzle/0050_flippant_jack_flag.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ALTER TABLE "system_settings" ADD COLUMN "enable_response_fixer" boolean DEFAULT true NOT NULL;--> statement-breakpoint
ALTER TABLE "system_settings" ADD COLUMN "response_fixer_config" jsonb DEFAULT '{"fixTruncatedJson":true,"fixSseFormat":true,"fixEncoding":true,"maxJsonDepth":200,"maxFixSize":1048576}'::jsonb;
ALTER TABLE "system_settings" ADD COLUMN IF NOT EXISTS "enable_response_fixer" boolean DEFAULT true NOT NULL;--> statement-breakpoint
ALTER TABLE "system_settings" ADD COLUMN IF NOT EXISTS "response_fixer_config" jsonb DEFAULT '{"fixTruncatedJson":true,"fixSseFormat":true,"fixEncoding":true,"maxJsonDepth":200,"maxFixSize":1048576}'::jsonb;
2 changes: 1 addition & 1 deletion drizzle/0051_silent_maelstrom.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE "system_settings" ADD COLUMN "enable_thinking_signature_rectifier" boolean DEFAULT true NOT NULL;
ALTER TABLE "system_settings" ADD COLUMN IF NOT EXISTS "enable_thinking_signature_rectifier" boolean DEFAULT true NOT NULL;
4 changes: 2 additions & 2 deletions drizzle/0052_model_price_source.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ALTER TABLE "model_prices" ADD COLUMN "source" varchar(20) DEFAULT 'litellm' NOT NULL;--> statement-breakpoint
CREATE INDEX IF NOT EXISTS "idx_model_prices_source" ON "model_prices" USING btree ("source");
ALTER TABLE "model_prices" ADD COLUMN IF NOT EXISTS "source" varchar(20) DEFAULT 'litellm' NOT NULL;--> statement-breakpoint
CREATE INDEX IF NOT EXISTS "idx_model_prices_source" ON "model_prices" USING btree ("source");
Loading