As per docs D1 has TypeScript support for representing rows like: ``` // Row definition type OrderR
As per docs D1 has TypeScript support for representing rows like:
What if the database has snake case column names, but I want to keep camel case;
is there a simple (automatic) to convert his?
e.g. like Drizzle supports with
If not wouldn't that a nice feature request?
What if the database has snake case column names, but I want to keep camel case;
is there a simple (automatic) to convert his?
e.g. like Drizzle supports with
const db = drizzle({ connection: process.env.DATABASE_URL, casing: 'snake_case' })If not wouldn't that a nice feature request?
