Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Allow a user to access a file that was previously uploaded by the same user:
create policy "Individual user Access"
on storage.objects for select
to authenticated
using ( (select auth.uid()) = owner_id );
using ( (select auth.uid()) = owner_id::uuid );
```

---
Expand Down
4 changes: 1 addition & 3 deletions supabase/migrations/20241121205753_add_meetups_columns.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
alter table public.meetups
add column timezone text;

comment on column public.meetups is 'Needs to be in America/Los_Angeles format.';

alter table public.meetups
add column city text;
add column city text;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
comment on column meetups.timezone is 'Needs to be in America/Los_Angeles format.';
Loading