-
Notifications
You must be signed in to change notification settings - Fork 0
DB Schema
Tanner edited this page Feb 15, 2022
·
12 revisions
Link to Database: dbdiagram
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| username | string | not null, unique |
| string | not null, unique | |
| hashed_password | string | not null |
| first_name | string | not null |
| last_name | string | not null |
| profile_pic | string | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| user_id | int | not null |
| caption | text |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| user_id | integer | not null |
| post_id | integer | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| photo | string | not null |
| post_id | integer | not null |