Cookie table...
This commit is contained in:
parent
cd11effb42
commit
844ace05b0
1 changed files with 6 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue