Inspired and adjusted from this gist.
- Install
dnsmasq
brew install dnsmasq
- Setup
Inspired and adjusted from this gist.
dnsmasq
brew install dnsmasq
create table teams ( | |
id uuid primary key default gen_random_uuid(), | |
name text not null, | |
city text not null | |
); | |
create table players ( | |
id uuid primary key default gen_random_uuid(), | |
team_id uuid references teams(id), | |
name text, |