Cookie table...

This commit is contained in:
Imbus 2024-05-04 13:36:27 +02:00
parent cd11effb42
commit 844ace05b0

View file

@ -2,6 +2,12 @@
-- Recipe/Cookie related tables -- 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 -- Our known customers, may need more fields
CREATE TABLE IF NOT EXISTS customers ( CREATE TABLE IF NOT EXISTS customers (
customer_id INT PRIMARY KEY, customer_id INT PRIMARY KEY,