feat(11-01): DB migration and API routes for agent signature storage

- Add agentSignatureData TEXT column to users table in schema.ts
- Generate migration 0008_windy_cloak.sql (ALTER TABLE users ADD COLUMN agent_signature_data text)
- Apply migration to local postgres database
- Create GET/PUT /api/agent/signature route with auth guard and input validation
This commit is contained in:
Chandler Copeland
2026-03-21 14:02:01 -06:00
parent 7783543158
commit e07ed306cd
5 changed files with 511 additions and 0 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "users" ADD COLUMN "agent_signature_data" text;