-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Parker Bolick edited this page Oct 11, 2021
·
2 revisions
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| username | string | not null, unique |
| string | ||
| hashedPassword | string | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
- index on
email, unique: true
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| userId | integer | not null, foreign key |
| notebookId | integer | foreign key |
| title | string | not null |
| content | string | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable -
notebookIdreferencesNotebookstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| userId | integer | not null, foreign key |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| userId | integer | not null, foreign key |
| noteId | integer | not null, foreign key |
| title | string | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable -
noteIdreferencesNotestable