From 8f24aee350a302d7f638a566e6b116af58ad6271 Mon Sep 17 00:00:00 2001 From: Hannes Date: Sun, 10 May 2020 17:16:17 +0200 Subject: [PATCH] fix add should_be_advertised to script --- prototype/scripts/addarticles.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototype/scripts/addarticles.sql b/prototype/scripts/addarticles.sql index 8f976a7..f7e5f5b 100644 --- a/prototype/scripts/addarticles.sql +++ b/prototype/scripts/addarticles.sql @@ -1,5 +1,5 @@ -INSERT INTO article_offers ("manufacturer", "article_number", "vat_percent") -VALUES ("McDonalds", "1", 7); +INSERT INTO article_offers ("manufacturer", "article_number", "vat_percent", "should_be_advertised") +VALUES ("McDonalds", "1", 7, 1); INSERT INTO articles ("related_id", "shop_price_per_unit_net_cent", "warehouse_units_per_slot", "should_reorder", "reorder_max_price", "title", "description", "image_id") VALUES (1, 19.99, 10, 1, 15, "Huge Hamburger", "This huge Hamburger is awesome!", NULL);