From 844ace05b08cb4d3f48b52d5819225b30f5e5070 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 4 May 2024 13:36:27 +0200 Subject: [PATCH] Cookie table... --- app/Migrations/create-schema.sql | 6 ++++++ 1 file changed, 6 insertions(+) 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,