-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
Jaden Lambino edited this page May 6, 2022
·
3 revisions
column name | type | constraints |
---|---|---|
id | integer | primary key |
first_name | string | not null |
last_name | string | not null |
username | string | not null, unique |
string | not null, unique | |
hashed_password | string | not null |
column name | type | constraints |
---|---|---|
followed_id | integer | not null |
followers_id | integer | not null |
- followed_id references Users table
- followers_id references Users table
column name | type | constraints |
---|---|---|
id | integer | primary key |
user_id | integer | not null |
photo_url | string | not null |
caption | string |
- user_id references Users table
column name | type | constraints |
---|---|---|
id | integer | primary key |
photo_id | integer | not null |
user_id | integer | not null |
body | string | not null |
- user_id references Users table
- photo_id references Photos table
column name | type | constraints |
---|---|---|
id | integer | primary key |
photo_id | integer | not null |
user_id | integer | not null |
- user_id references Users table
- photo_id references Photos table