itsyoboieltr
itsyoboieltr
Explore posts from servers
DTDrizzle Team
Created by itsyoboieltr on 11/30/2023 in #help
eslint-plugin-drizzle add "db" as default
Is there a reason why it is automatically applied for every delete function? I think most users would use "db" const anyway. If you decide not to make "db" default, can we somehow override this for all rules? it sounds very cumbersome to specify this for every rule (imagine if even more get added in the future)
28 replies
DTDrizzle Team
Created by itsyoboieltr on 11/19/2023 in #help
optional join
it would be nice if we could do something similar to the where function, where if we return undefined, nothing happens, to do optional joins.
8 replies
DTDrizzle Team
Created by itsyoboieltr on 11/13/2023 in #help
Full-text search on jsonb column
Hey, I was experimenting with full-text search and drizzle. I saw in the docs an example for full-text search https://orm.drizzle.team/docs/sql, but this seems to only work with text columns. How would I convert the where statement to make it work with jsonb? @Angelelz
10 replies
DTDrizzle Team
Created by itsyoboieltr on 11/7/2023 in #help
Is there any way to call drizzle-kit with the new node --env-file=.env argument?
Hey, since node supports env files since pretty recently, it would be nice if we could ditch dotenv. Now I only require dotenv to inject the environment variables to drizzle.config.ts to allow drizzle-kit to db push 😄
4 replies
DTDrizzle Team
Created by itsyoboieltr on 10/19/2023 in #help
Drizzle typebox enum array not working
I am making this post to raise some attention to an issue I made around 2 weeks ago on GitHub. https://github.com/drizzle-team/drizzle-orm/issues/1345#issuecomment-1771082418 The typebox schema and types generated for enum arrays is wrong. It seems like it would be fairly simple to fix, I hope this can be investigated soon 😄 Probably this is also connected https://github.com/drizzle-team/drizzle-orm/issues/1110
10 replies
DTDrizzle Team
Created by itsyoboieltr on 10/6/2023 in #help
Is it possible to use the "unaccent" extension with drizzle?
hello, I wanted to make an ilike comparison in my query for the letter %á%, but it does not match for %Á%, because afaik, they are regarded as two different letters by postgres. I asked chatgpt, who told me to use the "unaccent" extension to remove the accents before the comparison to get good results. Is this really the way to go? If yes, how could I integrate it with drizzle? I just want to query usernames without worrying about casing :DD
18 replies