Arpad Gabor
Arpad Gabor
I'd like to chime in here with the same issue - I'm working in a monorepo with drizzle and zod both (no trpc fyi), and with 7 schemas and ~88...
Seems like the `locale` param works, but the type definition does not include it and, at the moment, we need to use `@ts-ignore`. Any way around that?
It's like that because it depends on your database driver. https://orm.drizzle.team/docs/installation-and-db-connection
> Allowing to specify the columns on the many relation side sounds useful, but it introduces a new level of complexity, because then you could define the other relation side...
@benkraus @zivtamary on my phone atm but this works in my project: ``` parent: one(features, { fields: [features.parentId], references: [features.id], relationName: 'subfeatures', }), subfeatures: many(features, { relationName: 'subfeatures', }) ```...
Same issue here. Trying to navigate from `/blog` to `/blog/[slug]` however the `useRoute` does not get updated. Furthermore, seems like if I hard-refresh when on `/blog/[slug]`, then go to `/blog`...
We've experienced the same issue on our production environment (other environments didn't need the migration script) however the migration script fails on the production environment. Leaving this here, we are...
Yeah, it'd be great if releases highlighted better these kinds of problems, there's a link to the migration guide but it's the same one in each release, so you're less...
Seems like a column does not exist in `admin_permissions_role_links`... any idea how we can fix this easily? 
> @arpadgabor > > > We've experienced the same issue on our production environment (other environments didn't need the migration script) however the migration script fails on the production environment....