-
Notifications
You must be signed in to change notification settings - Fork 108
Support casing drizzle config #701
Copy link
Copy link
Closed
Labels
Description
Hello,
First, congrats on 0.10.0!
I have some projects relying on casing: 'snake_case' configuration option from drizzle I now can't find a way to do this. Is there any workaround or plan to implement this config option?
Example code before 0.10.0:
import { drizzle } from "drizzle-orm/d1";
import * as schema from "../database/schema";
export const useDB = () => {
return drizzle(hubDatabase(), { schema, casing: 'snake_case' })
};Reactions are currently unavailable