We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b9078 commit 08e6e7eCopy full SHA for 08e6e7e
example/next-storage/README.md
@@ -13,7 +13,7 @@ create table public.profiles (
13
full_name text,
14
avatar_url text
15
);
16
-alter table users enable row level security;
17
-create policy "Public profiles are viewable by everyone." on users for select using (true);
18
-create policy "Individuals update own user data." on users for update using (auth.uid() = id);
+alter table profiles enable row level security;
+create policy "Public profiles are viewable by everyone." on profiles for select using (true);
+create policy "Individuals update own user data." on profiles for update using (auth.uid() = id);
19
```
0 commit comments