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
2 changes: 2 additions & 0 deletions drizzle/0024_glossy_silvermane.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE "providers" ADD COLUMN "mcp_passthrough_type" varchar(20) DEFAULT 'none' NOT NULL;--> statement-breakpoint
ALTER TABLE "providers" ADD COLUMN "mcp_passthrough_url" varchar(512);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Critical: SQL Migration Missing Newline

Why this is a problem: The SQL migration file does not end with a newline character, which violates POSIX standards and can cause issues with version control systems and some SQL tools.

Suggested fix: Add a newline at the end of the file.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 Medium: Missing newline at end of file

Why this is a problem: SQL files should end with a newline character per POSIX standard. While not critical, this can cause issues with some tools and version control systems.

Suggested fix: Add a newline character at the end of the file.

Loading
Loading