Skip to content

Instantly share code, notes, and snippets.

@alexhwoods
Last active August 17, 2024 12:28
Show Gist options
  • Save alexhwoods/9b345f534b78118c45d99f7bb89148fe to your computer and use it in GitHub Desktop.
Save alexhwoods/9b345f534b78118c45d99f7bb89148fe to your computer and use it in GitHub Desktop.
Basketball Schema
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,
height int
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment