menu_items
Data license: MIT · Data source: Starbucks Singapore · About: Made by jerrynsh.com
0 rows where store_id = 13
This data as json
0 records
CREATE TABLE "menu_items" ("id" INTEGER NOT NULL PRIMARY KEY, "store_id" INTEGER NOT NULL, "item_id" VARCHAR(255) NOT NULL, "item_code" VARCHAR(255), "name" VARCHAR(255) NOT NULL, "description" VARCHAR(255) NOT NULL, "photo_urls" JSON NOT NULL, "is_mobile_order_pay" INTEGER NOT NULL, "is_delivery" INTEGER NOT NULL, "is_inventoried" INTEGER NOT NULL, "is_featured" INTEGER NOT NULL, "is_scheduled" INTEGER NOT NULL, "is_dine_in" INTEGER NOT NULL, FOREIGN KEY ("store_id") REFERENCES "stores" ("id")); CREATE INDEX "item_store_id" ON "menu_items" ("store_id"); CREATE UNIQUE INDEX "item_store_id_item_id" ON "menu_items" ("store_id", "item_id"); CREATE INDEX "item_store_id_name" ON "menu_items" ("store_id", "name");