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