- 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
1 line
59 B
SQL
1 line
59 B
SQL
ALTER TABLE "users" ADD COLUMN "agent_signature_data" text; |