Schema Information

January 22, 2017 ยท View on GitHub

users

column namedata typesdetails
idintegernot null, primary key
usernamestringnot null, indexed, unique
password_digeststringnot null
session_tokenstringnot null, indexed, unique
fnamestring
lnamestring
profile_urlstringdefault: (some picture)
intereststext

recipes

column namedata typesdetails
idintegernot null, primary key
user_idintegernot null, indexed, foreign key (references users)
titlestringnot null
image_urlstringdefault: (some picture)
average_ratinginteger
categorystringnot null
descriptiontextnot null
ingredientsarraynot null
directionsarraynot null

reviews

column namedata typesdetails
idintegernot null, primary key
user_idintegernot null, indexed, foreign key (references users)
recipe_idintegernot null, indexed, foreign key (references recipes)
ratingintegernot null
reviewtext

favorites

column namedata typesdetails
idintegernot null, primary key
user_idintegernot null, indexed, foreign key (references users), unique [recipe_id]
recipe_idintegernot null, indexed, foreign key (references recipes)