Partner Finder
Tanzania Pickleball Open
No partner? Sign up and connect with players looking for one.
Organized by East Africa Racket Sports Club (EARSC) — Gymkhana, Dar es Salaam earsportsclub.com ↗
Your Info
DUPR Rating
DUPR
Category & Notes
Waiting for admin to set tournament categories.

Your phone is only shown when a player clicks "Show Contact". Tournament use only.

Loading...

One-time database setup

1
Create a free project at supabase.com, then open the SQL Editor and run this SQL:
CREATE TABLE IF NOT EXISTS players (
  id bigint generated always as identity primary key,
  created_at timestamptz default now(),
  first text not null,
  last text not null,
  phone text not null,
  gender text not null,
  dupr numeric not null,
  dupr_id text,
  categories text[],
  notes text
);
ALTER TABLE players ENABLE ROW LEVEL SECURITY;
CREATE POLICY "read" ON players FOR SELECT USING (true);
CREATE POLICY "insert" ON players FOR INSERT WITH CHECK (true);
CREATE POLICY "delete" ON players FOR DELETE USING (true);

CREATE TABLE IF NOT EXISTS tournament (
  id int primary key default 1,
  name text, start_date date, end_date date,
  location text, categories text[]
);
INSERT INTO tournament(id) VALUES(1) ON CONFLICT DO NOTHING;
ALTER TABLE tournament ENABLE ROW LEVEL SECURITY;
CREATE POLICY "read t" ON tournament FOR SELECT USING (true);
CREATE POLICY "update t" ON tournament FOR UPDATE USING (true);
2
Go to Project Settings → API. Copy your Project URL and anon public key and paste below, then click Connect.
Tournament Details
Registered Players

Connect database to manage players.