-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Lauren Gus edited this page May 7, 2021
·
8 revisions
Column Name | Data Type | details |
---|---|---|
id | integer | not null, primary key |
username | string | not null |
string | not null, unique | |
hashedPassword | string | not null |
createdAt | datetime | not null |
updatedAt | datetime | not null |
Column Name | Data Type | Details |
---|---|---|
id | integer | not null, primary key |
content | string | not null |
userId | integer | not null, foreign key |
createdAt | datetime | not null |
updatedAt | datetime | not null |
Column Name | Data Type | Details |
---|---|---|
id | integer | not null, primary key |
content | string | not null |
userId | integer | not null, foreign key |
questionId | integer | not null, foreign key |
createdAt | datetime | not null |
updatedAt | datetime | not null |
Column Name | Data Type | Details |
---|---|---|
id | integer | not null, primary key |
upVote | boolean | not null |
userId | integer | not null, foreign key |
questionId | integer | not null, foreign key |
createdAt | datetime | not null |
updatedAt | datetime | not null |
Column Name | Data Type | Details |
---|---|---|
id | integer | not null, primary key |
upVote | boolean | not null |
userId | integer | not null, foreign key |
answerId | integer | not null, foreign key |
createdAt | datetime | not null |
updatedAt | datetime | not null |