[Solved] How to see a supabase with references to authUsers.id?
I have a supabase postgres and I'm trying to seed a table (permissions) with a foreign key to the
drizzle-orm/supabase
authUsers table.
Here's what I'm getting when I try to seed permissions
:
1 Reply
You need to inlcude authUsers
import { authUsers } from "drizzle-orm/supabase"
in the seed schema which allows you to seed users as well