Go to
SQL Editor and run:
CREATE TABLE pubs (
id uuid default gen_random_uuid() primary key,
player text not null,
name text not null,
location text not null,
beer text not null,
cost numeric,
rating numeric default 0,
notes text,
created_at timestamptz default now()
);
ALTER TABLE pubs ENABLE ROW LEVEL SECURITY;
CREATE POLICY "public access" ON pubs
FOR ALL USING (true) WITH CHECK (true);