can RLS be used without supabase/neon?
Hello, currently im working on a project to learn. But I was reading about RLS and notice there isn't information about it without using those two. is it not supported or what?
2 Replies
Drizzle doesn’t “implement” RLS; it fully supports it because Drizzle is just generating SQL. You enable RLS and write policies in Postgres, then connect with Drizzle as usual. The database enforces the rules.
Any postgres database can use RLS if it's running on Postgres 9.5 or higher