Introspect on a Supabase project -> non existing `userInAuth` relation
I'm trying to run
drizzle-kit introspect
on an extremely simple project, with little more than user authentication. Everything seems to work fine, but the generated relations.ts
tries to import and use userInAuth
from the generated schema.ts
But that it's not exported ( or created ) in schema.ts
.
I believe that has something to do with Supabase having an auth schema, that has a relation with the users table I'm using on the public schema.
But, how I'm supposed to manage this structure with Drizzle?
Is there any best practice for this?
thanks0 Replies