修复数据库字段长度不足导致的缩略图不显示的bug

This commit is contained in:
zyx0814
2022-07-12 18:58:54 +08:00
Unverified
parent 0ecbb0dafa
commit 5a17d69be7

View File

@@ -1433,7 +1433,7 @@ CREATE TABLE `dzz_thumb_record` (
`waterstatus` tinyint(1) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0无水印其他值水印位置',
`dateline` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '时间',
`thumbstatus` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未生成1已生成-1生成失败',
`path` char(150) NOT NULL DEFAULT '' COMMENT '路径',
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
`times` int(11) UNSIGNED NOT NULL DEFAULT '0',
`thumbdonum` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '生成次数',
`thumbsign` smallint(1) UNSIGNED NOT NULL DEFAULT '0' COMMENT '缩略图标致0.small,1large',