-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Tran Le edited this page Apr 25, 2021
·
10 revisions
| 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 |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| caption | string | |
| imgURL | string | not null |
| userId | integer | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| name | string | not null |
| description | string | |
| userId | integer | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| photoId | integer | not null |
| albumId | integer | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
photoIdreferencesPhotostable -
albumIdreferencesAlbumstable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| body | string | not null |
| userId | integer | not null |
| photoId | integer | not null |
| createdAt | timestamp | not null |
| updatedAt | timestamp | not null |
-
userIdreferencesUserstable -
photoIdreferencesPhotostable
