-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Kevin Bartolome edited this page Apr 28, 2022
·
18 revisions
Schema of the PostgreSQL database
+ Users Table
- fill in
- fill in
+ Images Table
- fill in
- fill in
+ Comments Table
- fill in
- fill in
+ Favorites Table
- fill in
- fill in
+ Profile Table
- fill in
- fill in
column names | data type | details |
---|---|---|
id | integer | PK, not null |
username | string(3, 256) | unique, not null |
string(3, 30) | unique, not null | |
hashedPassword | string.binary | unique, not null |
- username,
unique: true
- email,
unique: true
column names | data type | details |
---|---|---|
id | integer | PK, not null |
imageURL | string | not null |
userId | integer | foreign key |
tags | array | not null, defaultValue = [] |
favoritedCount | integer | not null, defaultValue = 0 |
-
userId
referencesusers
table