Tried to create a role with a NULL password

using Next.js 15 , neon , drizzle

trying to create role for Row-Level Security getting error : Tried to create a role with a NULL password


export const admin = pgRole("admin");

() => [crudPolicy({ role: admin, read: false, modify: false })]
Was this page helpful?