Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.03 KB

File metadata and controls

33 lines (22 loc) · 1.03 KB

seliBay

Database Schema

Table: users

Column Type Nullable Notes
id serial not null PRIMARY KEY
username VARCHAR(255) FOREIGN KEY
password text not null

Table: posts

Column Type Nullable Notes
id serial not null PRIMARY KEY
user_id integer FOREIGN KEY REFERENCES users(id) ON DELETE CASCADE
item_name VARCHAR(255)
price text
image_info text
image_inmage ??

Table: sessions

Column Type Nullable Notes
sid VARCHAR(255) PRIMARY KEY
data json not null