Skip to content

DB Schema

Tanner edited this page Feb 15, 2022 · 12 revisions

Link to Database: dbdiagram

Users

column name data type details
id integer not null, primary key
username string not null, unique
email string not null, unique
hashed_password string not null
first_name string not null
last_name string not null
profile_pic string not null

Posts

column name data type details
id integer not null, primary key
user_id int not null
caption text

Clone this wiki locally