-
Notifications
You must be signed in to change notification settings - Fork 4
schema
Kieran Scannell edited this page Feb 28, 2020
·
2 revisions
| column name | data type | details |
|---|---|---|
username |
string | required, unique |
email |
string | required, unique |
password |
string | required |
token |
string | |
dateOfBirth |
date | required |
gender |
string | required, enum: ["Male", "Female", "Non-binary"] |
followedPlaylists |
array of ids | ref "playlists" |
| column name | data type | details |
|---|---|---|
title |
string | required |
album |
id | required, ref "albums" |
artist |
id | required, ref "artists" |
| column name | data type | details |
|---|---|---|
name |
string | required |
albums |
array of ids | ref "albums" |
| column name | data type | details |
|---|---|---|
name |
string | required |
artist |
id | ref "artists" |
songs |
array of ids | ref "songs" |
genre |
string | required |
| column name | data type | details |
|---|---|---|
name |
string | required |
creator |
id | ref "users" |
songs |
array of ids | ref "songs" |
| column name | data type | details |
|---|---|---|
name |
string | required |
albums |
array of ids | ref "albums" |