How to sync schema in a in-memory database?

Hello,

I'd like to use drizzle with Bun's SQLite module to store data in-memory.
Since the in-memory aspect is managed by the driver itself, I initialize drizzle as usual... but how can I sync up my schema in this database?

As it is in-memory, and so ephemeral, I can't use drizzle-kit to push a migration into it to run my application afterwards.

I've been looking for some APIs to sync schema with an active connection, but I couldn't find any.

Thanks!
Was this page helpful?