Hi,
I have a durable-object implementation that uses SQLite bound to it. And in this drizzle runs perfectly, but ---- for the schema creation, I have to go a different route --- the problem is that the DB has to be created by the durableobject instance, not during build time.
That means I need to use drizzle-kit at runtime, which doesn't seem made for that. And the SQL which the Drizzle kit creates is not a perfect match to the needs, it requires node/process.... --- and it should not execute all DDL commands once, and it should check if the table exists (CREATE TABLE IF NOT EXISTS) and skip.
Are there plans to evolve Drizzle-Kit into a runtime lib, or is it better to create something new, which infers the schema and generates the DDL commands?