mirror of
https://github.com/willchen96/mike.git
synced 2026-06-20 21:18:07 +02:00
refactor: add table primitive and migrations by date; feat: add mcp connectors
This commit is contained in:
parent
01dfcfe0d4
commit
9a1277ba99
99 changed files with 9344 additions and 2320 deletions
9
backend/migrations/20260421_02_user_api_keys.sql
Normal file
9
backend/migrations/20260421_02_user_api_keys.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- Migration date: 2026-04-21
|
||||
|
||||
-- Migration: add optional per-user API keys for direct provider access.
|
||||
-- When set, these keys override the server-wide env keys for that user's
|
||||
-- requests; callers must fall back to env when null.
|
||||
|
||||
ALTER TABLE user_profiles
|
||||
ADD COLUMN IF NOT EXISTS claude_api_key TEXT,
|
||||
ADD COLUMN IF NOT EXISTS gemini_api_key TEXT;
|
||||
Loading…
Add table
Add a link
Reference in a new issue