Archestra Dev Interactions Migrations

Use BEFORE writing or running any Drizzle migration that touches the `interactions` table (or any other very large, write-hot table). The interactions table is the platform's biggest, append-heavy table — every LLM proxy call writes a row — so a careless migration can take a write-blocking lock and stall the proxy. Covers which operations are safe vs table-rewriting/lock-taking, the "never rebuild an index in a transactional migration" rule, and a read-only audit procedure against the GKE staging database to size the risk first.

archestra-ai 4a23e3f 7.0 KB Updated

File contents

archestra-ai/archestra/tree/main/.codex/skills/archestra-dev-interactions-migrations commit 4a23e3f49f

Frequently asked questions

npx skillmds@latest add archestra-ai/archestra-dev-interactions-migrations