Members

4 profiles

๐ŸŽธ

Akhil

Guitar ยท /akhil

View
๐ŸŽค

Sagar

Vocals ยท /sagar

View
๐Ÿฅ

Arun

Drums ยท /arun

View
๐ŸŽธ

Vijith

Guitar ยท /vijith

View

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;