diff --git a/app/Migrations/create-schema.sql b/app/Migrations/create-schema.sql index ead6e9c..b0d633a 100644 --- a/app/Migrations/create-schema.sql +++ b/app/Migrations/create-schema.sql @@ -2,6 +2,12 @@ -- Recipe/Cookie related tables -------------------------------------------- +-- Holds the different types of cookies we can make. +CREATE TABLE cookie ( + cookie_id INT PRIMARY KEY, + cookie_name VARCHAR(50) NOT NULL UNIQUE, +); + -- Our known customers, may need more fields CREATE TABLE IF NOT EXISTS customers ( customer_id INT PRIMARY KEY,