Skip to content

Database Schema

James Jones edited this page Sep 17, 2024 · 11 revisions

Users

Column name Data Type Details
id int PK, not null
username string not null, unique
email string not null, unique
first_name string not null
last_name string
hashedPassword string not null

Images

Column name Data Type Details
id int
user_id int PK, not null
image_url string not null
title string
description string
  • user_id references Users table

Clone this wiki locally