-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Alejandro Carrizosa Grant edited this page Jan 4, 2022
·
1 revision
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
firstname | string | not null |
lastname | string | not null |
username | string | not null, unique |
string | not null, unique | |
hashedPassword | string | not null |
profilePicture | string | |
createdAt | datetime | not null |
updatedAt | datetime | not null |
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
followerId | integer | not null, unique |
followedId | integer | not null, unique |
createdAt | datetime | not null |
updatedAt | datetime | not null |
followerId
references Users.id
followedId
references Users.id
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
userId | integer | not null, unique |
postId | integer | not null, unique |
createdAt | datetime | not null |
updatedAt | datetime | not null |
userId
references Users.id
postId
references Posts.id
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
userId | integer | not null |
postId | integer | not null |
description | text | not null |
createdAt | datetime | not null |
updatedAt | datetime | not null |
userId
references Users.id
postId
references Posts.id
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
userId | integer | not null |
description | text | |
content | text | not null |
createdAt | datetime | not null |
updatedAt | datetime | not null |
userId
references Users.id