Relation between App Schema and Component Schema (betterAuth)
I have convex/schema.ts which has the following
and i have convex/betterAuth/schema.ts which has a table called user with the userId
how can i make a relation between the guest_book and the user in the guestbook_schema
I commented out the section for the userId in the guestbook_schema
if I use v.string() it works but no relation , it is just a field i will have to programatically inject the userId
I can't use v.id("user") since i will since it won't match schema validator ,
so is that possible to make relation between base app and components ?
