Battle Royale • 18 Patos • Online
Sala pública — todos podem entrar
Os maiores patos da lagoa
create table rankings (pid text primary key, name text, xp int default 0, level int default 1, wins int default 0, kills int default 0, games int default 0, rank_name text, updated_at timestamptz default now());alter table rankings enable row level security;create policy "public" on rankings for all using (true) with check (true);