Skip to content

Commit

Permalink
:fix add image_file_name column on attendees table
Browse files Browse the repository at this point in the history
  • Loading branch information
KannoStanfoot committed Jul 6, 2024
1 parent d46cfea commit 9da0bc1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions supabase/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ create table if not exists public.attendees (
updated_at timestamp with time zone default timezone('utc' :: text, now()) not null
);

ALTER TABLE public.attendees ADD COLUMN image_file_name varchar(100) not null unique;

-- *** Function definitions ***
create
or replace function public.create_admin_user() returns trigger as $ $ begin -- If user_role is 'admin', insert data into admin_users table
Expand Down

0 comments on commit 9da0bc1

Please sign in to comment.