Members
4 profiles
Setup required
Run this SQL once in your Supabase dashboard to enable cloud storage:
create table public.members (
id text primary key,
name text not null,
role text not null,
icon text not null default '๐ธ',
color text not null default '#6366f1',
position integer not null default 0
);
alter table public.members enable row level security;
create policy "open" on public.members for all using (true) with check (true);
-- Seed with current members
insert into public.members (id, name, role, icon, color, position) values
('akhil', 'Akhil', 'guitar', '๐ธ', '#6366f1', 0),
('sagar', 'Sagar', 'vocals', '๐ค', '#34d399', 1),
('arun', 'Arun', 'drums', '๐ฅ', '#fbbf24', 2),
('vijith', 'Vijith', 'guitar', '๐ธ', '#f472b6', 3)
on conflict (id) do nothing;