-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
James Jones edited this page Sep 17, 2024
·
11 revisions
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| username | string | not null, unique |
| string | not null, unique | |
| first_name | string | not null |
| last_name | string | |
| hashedPassword | string | not null |
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| user_id | int | not null |
| image_url | string | not null |
| title | string | |
| description | string |
-
user_idreferencesUserstable
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| name | string | not null, unique |
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| user_id | int | not null |
| name | string | not null |
| description | string |
-
user_idreferencesUserstable
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| image_id | int | not null |
| user_id | int | not null |
-
user_idreferencesUserstable -
image_idreferencesImagestable
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| user_id | int | not null |
| image_id | int | not null |
| comment | string | not null |
-
user_idreferencesUserstable -
image_idreferencesImagestable
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| image_id | int | not null |
| stash_id | int | not null |
-
stash_idreferencesStashtable -
image_idreferencesImagestable
| Column name | Data Type | Details |
|---|---|---|
| id | int | PK, not null |
| image_id | int | not null |
| label_id | int | not null |
-
label_idreferencesLabelstable -
image_idreferencesImagestable