I have two workers (in `a/` and `b/`), both with D1 bindings to `DB` in their `wrangler.toml`s. I c
I have two workers (in
a/ and b/), both with D1 bindings to DB in their wrangler.tomls. I created the D1 inside a/, added some data, and can retrieve it using pnpm wrangler d1 execute DB --local --command="SELECT * FROM users" inside a/. Ideally, I'd like to run the same command in b/, but I'm getting an error: no such table: users. I'm guessing this is because the local D1 instance is inside a/.wrangler/state/v3/d1/miniflare-D1DatabaseObject ...is there any way to make this (or similar) work?


