## Description
A few path references in WARP.md don't match the current workspace
layout. The "Core Libraries" bullets list `warp_core/`, `editor/`,
`ui/`, `ipc/`, and `graphql/` as if they live at the repo root, but each
one is under `crates/`. The "Workspace Structure" line still says "34+
member crates" — `find crates -maxdepth 1 -mindepth 1 -type d` returns
63 today. And the Database / GraphQL sections point at paths that don't
resolve:
- `migrations/` → `crates/persistence/migrations/`
- `app/src/persistence/schema.rs` → `crates/persistence/src/schema.rs`
- `graphql/api/schema.graphql` →
`crates/warp_graphql_schema/api/schema.graphql`
Updated each reference to match what's on disk.
## Testing
Docs-only change.
Co-authored-by: anshul-garg27 <anshul-garg27@users.noreply.github.com>