Skip to content

Database Schema

MonicaKornis edited this page Dec 27, 2017 · 8 revisions

Users

column name data type details
id integer primary key, not null, unique
email string not null, unique
password_digest string not null
session_token string not null

Recipes

column name data type details
id integer primary key, not null, unique
title string not null
description string not null
author_id integer foreign key, not null
ingredients string not null
cooking_time integer not null

Comments

column name data type details
id integer primary key, not null, unique
body string not null
author_id integer foreign key, not null
recipe_id integer foreign key, not null

Clone this wiki locally