-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
Jonathan Chan edited this page Apr 9, 2021
·
24 revisions
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| username | string | not null, |
| string | not null, unique | |
| hashedPassword | string | not null, unique |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| cover | string | not null, |
| title | string | not null, unique |
| author | string | not null |
| avg_rating | integer | not null |
| published | date | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| name | string | not null |
| userId | integer | not null, foreign key |
-
userIdreferencesUsertable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| status | string | not null |
| bookId | integer | not null, foreign key |
| userId | integer | not null, foreign key |
-
userIdreferencesUsertable -
bookIdreferencesBooktable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| category | string | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| author | string | not null |
| rating | integer | not null |
| created_at | date | not null |
| userId | integer | not null, foreign key |
| bookId | integer | not null, foreign key |
-
userIdreferencesUsertable -
bookIdreferencesBooktable