-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Shane Wilkey edited this page Jun 18, 2021
·
4 revisions
column name | data type | details |
---|---|---|
id | integer | primary key/ not null |
username | varchar | not null |
varchar | not null | |
hashedPassword | varchar | not null |
createdAt | timestamp | not null |
updatetAt | timestamp | not null |
column name | data type | details |
---|---|---|
id | integer | primary key/ not null |
userId | integer | foreign key/ not null |
title | varchar | not null |
imageUrl | varchar | nullable |
createdAt | timestamp | not null |
updatetAt | timestamp | not null |
column name | data type | details |
---|---|---|
id | integer | primary key/ not null |
userId | integer | foreign key/ not null |
title | varchar | not null |
imageUrl | varchar | not null |
createdAt | timestamp | not null |
updatetAt | timestamp | not null |
column name | data type | details |
---|---|---|
id | integer | primary key/ not null |
userId | integer | foreign key/ not null |
trackId | integer | foreign key/ not null |
songId | integer | foreign key/ not null |
body | varchar | not null |
createdAt | timestamp | not null |
updatetAt | timestamp | not null |