aboutsummaryrefslogtreecommitdiff
path: root/db/data.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/data.sql')
-rw-r--r--db/data.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/db/data.sql b/db/data.sql
index 55f59df..fb85463 100644
--- a/db/data.sql
+++ b/db/data.sql
@@ -15,6 +15,10 @@ insert into webs.product (`name`, `price`, `category`, `image`) values
("Kip", 9.95, 3, false),
("Kikker", 19.95, 3, false);
+update webs.product set description = "<ul><li>lekker sappig</li><li>zonder BTW</li></ul>" where id = 1;
+update webs.product set description = "<ul><li>snel bruin</li><li>zonder BTW</li></ul>" where id = 2;
+update webs.product set description = "<ul><li>kurkdroog</li><li>zonder BTW</li></ul>" where id = 3;
+
insert into webs.customer (`name`) values
("loek"),
("bert"),