Replies: 4 comments
-
|
Looks like they are just beefing up the RLS warning. |
Beta Was this translation helpful? Give feedback.
-
|
That is so annoying. Does anyone know how to disable this red label? its blocking the table names and I can't even read...
|
Beta Was this translation helpful? Give feedback.
-
|
Enabling RLS in the button bar above the table contents turns the label off. Even if you don't add an RLS policy. I just did that for mine and my app still works. |
Beta Was this translation helpful? Give feedback.
-
|
SQL for enabling RLS on all tables filtered to DO $$
DECLARE
row record;
BEGIN
FOR row IN SELECT tablename FROM pg_tables AS t WHERE t.schemaname = 'public' LOOP
EXECUTE format('ALTER TABLE %I ENABLE ROW LEVEL SECURITY;', row.tablename);
END LOOP;
END;
$$; |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I noticed that starting this morning, all my tables in the dashboard are suddenly marked as "Unrestricted" in red. This wasn’t the case before. I haven't changed any Row Level Security (RLS) settings manually.
Can you clarify:
What does this "Unrestricted" label exactly mean?
Is this a new visual indicator following a recent dashboard update?
Does it imply any new security risk, or is it just a UI reminder that RLS is currently disabled?
Will this affect public API behavior in any way?
Thanks in advance for your help and clarification!
Best regards,
Nicolas
Beta Was this translation helpful? Give feedback.
All reactions