diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-05-08 17:14:06 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-05-08 17:14:06 +0200 |
commit | f3b582307cc3caf5ee0c7514d461e47fb5893bc7 (patch) | |
tree | 8865da67af7ae04d870481af155781c9a82ff0a7 /db/data.sql | |
parent | cda96d31939c7ea727c114b162f43bb4d18314a2 (diff) |
uppercase is dumb
Diffstat (limited to 'db/data.sql')
-rw-r--r-- | db/data.sql | 4 |
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"), |