Last active
August 17, 2024 12:28
-
-
Save alexhwoods/9b345f534b78118c45d99f7bb89148fe to your computer and use it in GitHub Desktop.
Basketball Schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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