aboutsummaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-05-08 17:08:54 +0200
committerlonkaars <loek@pipeframe.xyz>2023-05-08 17:08:54 +0200
commitcda96d31939c7ea727c114b162f43bb4d18314a2 (patch)
treeaa1aac2c746c5a1452b11af3f187d499b5a9ce5f /db
parent08d6281d872a8d2a496462f131cbdc860432acc0 (diff)
more website
Diffstat (limited to 'db')
-rw-r--r--db/data.sql22
-rw-r--r--db/init.sql3
2 files changed, 13 insertions, 12 deletions
diff --git a/db/data.sql b/db/data.sql
index 4fb248e..55f59df 100644
--- a/db/data.sql
+++ b/db/data.sql
@@ -3,17 +3,17 @@ insert into webs.category (`name`) values
("Boeken"),
("Overig");
-insert into webs.product (`name`, `price`, `category`) values
- ("Appel", 0.90, 1),
- ("Banaan", 1.10, 1),
- ("Peer", 0.99, 1),
- ("ハリネズミのハリー 第1巻", 5.99, 1),
- ("ハリネズミのハリー 第2巻", 5.99, 1),
- ("ハリネズミのハリー 第3巻", 5.99, 1),
- ("イジらないで、長瀞さん 第1巻", 5.49, 1),
- ("イジらないで、長瀞さん 第2巻", 5.49, 1),
- ("Kip", 9.95, 3),
- ("Kikker", 19.95, 3);
+insert into webs.product (`name`, `price`, `category`, `image`) values
+ ("Appel", 0.90, 1, true),
+ ("Banaan", 1.10, 1, true),
+ ("Peer", 0.99, 1, true),
+ ("ハリネズミのハリー 第1巻", 5.99, 1, true),
+ ("ハリネズミのハリー 第2巻", 5.99, 1, false),
+ ("ハリネズミのハリー 第3巻", 5.99, 1, false),
+ ("イジらないで、長瀞さん 第1巻", 5.49, 1, false),
+ ("イジらないで、長瀞さん 第2巻", 5.49, 1, false),
+ ("Kip", 9.95, 3, false),
+ ("Kikker", 19.95, 3, false);
insert into webs.customer (`name`) values
("loek"),
diff --git a/db/init.sql b/db/init.sql
index d84d4e9..a9fc25b 100644
--- a/db/init.sql
+++ b/db/init.sql
@@ -15,7 +15,8 @@ create table if not exists webs.product (
`ID` int not null auto_increment,
`name` varchar(255) not null,
`price` decimal(5, 2) not null,
- `image_path` varchar(255) not null default "img/placeholder.png",
+ `image` boolean not null default false,
+ `description` mediumtext null default null,
`category` int not null,
primary key (`ID`),
constraint `product_category_fk`