Make img carousel work

This commit is contained in:
2025-06-28 15:41:18 -07:00
parent 1295ca9ea4
commit 3f3d73a271
4 changed files with 19 additions and 4 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `ProductImage` (
`ImageID` int(11) NOT NULL AUTO_INCREMENT,
`ProductID` int(11) NOT NULL,
`Image` MEDIUMBLOB,
`Name` varchar(60) DEFAULT NULL,
`Name` varchar(200) DEFAULT NULL,
PRIMARY KEY (`ImageID`,`ProductID`)
) AUTO_INCREMENT=1;