Para criar a tabela no Supabase, acesse o painel do seu projeto, vá em SQL Editor e execute o SQL abaixo:
CREATE TABLE promotores (
id bigint generated always as identity primary key,
nome text not null,
ini text,
wpp text,
p1 text,
p2 text,
r1 text,
r2 text,
cache numeric,
status text default 'disponivel',
av numeric default 5,
evs integer default 0,
obs text,
created_at timestamptz default now()
);
ALTER TABLE promotores ENABLE ROW LEVEL SECURITY;
CREATE POLICY "public_access" ON promotores FOR ALL USING (true) WITH CHECK (true);
Clique no SQL acima para copiar. Depois recarregue esta página.