aboutsummaryrefslogtreecommitdiff
path: root/db/init.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/init.sql')
-rw-r--r--db/init.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/init.sql b/db/init.sql
index c842e52..872d456 100644
--- a/db/init.sql
+++ b/db/init.sql
@@ -10,7 +10,7 @@ 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` mediumblob null default null,
+ `image_path` varchar(255) not null default "img/placeholder.png",
`category` int not null,
primary key (`ID`),
constraint `product_category_fk`