mirror of
https://gitlab.com/wheres-the-tp/server.git
synced 2026-01-25 04:24:56 -06:00
Update ddl.sql
This commit is contained in:
parent
f568c816e8
commit
1a8a8f80d8
1 changed files with 16 additions and 1 deletions
|
|
@ -6,7 +6,22 @@ DROP TYPE IF EXISTS QUANTITY CASCADE;
|
|||
CREATE TYPE QUANTITY AS ENUM ('lots', 'many', 'few', 'none');
|
||||
|
||||
DROP TYPE IF EXISTS CATEGORY CASCADE;
|
||||
CREATE TYPE CATEGORY AS ENUM ('beverages', 'desserts', 'entrees', 'other');
|
||||
CREATE TYPE CATEGORY AS ENUM (
|
||||
'Baby & Kids',
|
||||
'Baked Goods',
|
||||
'Beverages',
|
||||
'Cleaning',
|
||||
'Dairy & Eggs',
|
||||
'Frozen Food',
|
||||
'Fruit & Vegetables',
|
||||
'Health & Beauty',
|
||||
'Home & Outdoor',
|
||||
'Meat & Seafood',
|
||||
'Pantry & Dry Goods',
|
||||
'Pet Supplies',
|
||||
'School & Office Supplies',
|
||||
'Toiletries'
|
||||
);
|
||||
|
||||
DROP TABLE IF EXISTS food_items CASCADE;
|
||||
CREATE TABLE food_items (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue