Example simple database tables
beatles_fk_tables.Rd
A named list of data frames, each of which is a foreign key table (fk table) with simple information about the Beatles.
Details
This list is in the correct format
for the function pl_upload_schema_and_simple_tables()
.
Examples
beatles_fk_tables
#> $Member
#> # A tibble: 4 × 2
#> MemberID Member
#> <int> <chr>
#> 1 1 John Lennon
#> 2 2 Paul McCartney
#> 3 3 George Harrison
#> 4 4 Ringo Starr
#>
#> $Role
#> # A tibble: 4 × 2
#> RoleID Role
#> <int> <chr>
#> 1 1 Lead singer
#> 2 2 Bassist
#> 3 3 Guitarist
#> 4 4 Drummer
#>