Skip to content

Commit

Permalink
修复数据库字段长度不足导致的缩略图不显示的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zyx0814 committed Jul 12, 2022
1 parent 0ecbb0d commit 5a17d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/data/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 5a17d69

Please sign in to comment.