-
Notifications
You must be signed in to change notification settings - Fork 1
DB Schema
Tyler edited this page Sep 17, 2024
·
4 revisions
Column name | data type | details |
---|---|---|
id | integer | PK |
not null, unique | ||
userName | string | not null, unique |
password | string | not null |
firstName | string | not null |
lastName | string | not null |
bio | text | not null |
Column name | data type | details |
---|---|---|
id | integer | PK |
ownerId | integer | . |
name | string | . |
description | text | . |
isPublic | boolean | . |
songOrder | string | . |
Column name | data type | details |
---|---|---|
id | integer | PK |
name | string | |
releaseDate | date | |
description | text | |
artistId | integer | . |
Column name | data type | details |
---|---|---|
id | integer | PK |
name | string | . |
albumId | integer | . |
artistId | integer | . |
Column name | data type | details |
---|---|---|
id | integer | PK |
songId | integer | . |
playlistId | integer | . |
Column name | data type | details |
---|---|---|
id | integer | PK |
userId | integer | . |
songId | integer | . |