Austin
Austin
I can confirm `getTableColumns(table)` with the snake_casing settings turned on returns the columns incorrectly as camelCase. Table was defined like `shortId: varchar({ length: 21 })` ```ts shortId: PgVarchar { name:...
@Handfish I think you should definitely try opening a PR on the official drizzle repo since the maintainers have publicly started acknowledging effect by tweeting about it, maybe they'll consider...
@ghardin1314 I noticed the `refine` property in `createSelectSchema` and such wasn't type safe. This seems to be working better for me ```ts import * as Drizzle from 'drizzle-orm' import *...
Have to add the flag on the root, not in the subpackage commands for it to work. For example below doesn't work running to root. Writing a note to myself...
Worth noting that Bun supports `catalog` now https://bun.sh/docs/install/catalogs
Related note, i'm also running into many `not-to-unresolvable` issues in a monorepo. My monorepo follows a turborepo structure. Could we get some additional documentation/recipes/examples for a monorepo structure? The three...
Would love to see this documented as well
I ran into this as well. This fixes it for now ```ts export const selectDataSchema = createSelectSchema( responseData, { text_array: z.array(z.string()), }, ) ```
I'm stuck on `7.1.2` due to this issue working with cloudflare-vite. Here's a repro. https://github.com/austinm911/zero-starter/tree/vite-pre-bundle-repro?tab=readme-ov-file
As a tailwind v4 user, would love to learn more about how to integrate it!