-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
Parker Bolick edited this page Nov 16, 2021
·
2 revisions
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| fullName | string | not null |
| string | not null, unique | |
| profileImage | string | |
| hashedPassword | string | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| description | string | |
| ownerId | integer | not null, foreign key |
| color | string | not null, default: 'blue' |
| icon | string | not null, default: 'fa-project-diagram' |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
ownerIdreferencesUserstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| projectId | integer | not null, foreign key |
| memberId | integer | not null, foreign key |
| createdAt | timestamp | not null |
-
projectIdreferencesProjectstable -
memberIdreferencesUserstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| projectId | integer | not null, foreign key |
| boardColumn | integer | not null |
| title | string | not null |
-
projectIdreferencesProjectstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| description | string | |
| ownerId | integer | not null, foreign key |
| assigneeId | integer | not null, foreign key |
| sectionId | integer | not null, foreign key |
| status | timestamp | not null |
| priority | timestamp | not null |
| startDate | date | |
| endDate | date | |
| completed | boolean | not null, default: false |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
ownerIdreferencesUserstable -
assigneeIdreferencesUserstable -
sectionIdreferencesSectionstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| userId | integer | not null, foreign key |
| comment | text | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable
| Column Name | Data Type | Details |
|---|---|---|
| id | integer | not null, primary key |
| taskId | integer | not null, foreign key |
| commentId | integer | not null, foreign key |
-
taskIdreferencesTaskstable -
commentIdreferencesCommentstable