Correct form of table name

This commit is contained in:
Imbus 2024-05-04 13:37:25 +02:00
parent 844ace05b0
commit 2a834d8a8a
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
--------------------------------------------
-- Holds the different types of cookies we can make.
CREATE TABLE cookie (
CREATE TABLE cookies (
cookie_id INT PRIMARY KEY,
cookie_name VARCHAR(50) NOT NULL UNIQUE,
);