znt/db/update17.7.sql

14 lines
548 B
MySQL
Raw Permalink Normal View History

update zt_kanban
set
colWidth = if(colWidth < 200, 200, colWidth),
minColWidth = if(minColWidth < 200, 200, minColWidth),
maxColWidth = if(maxColWidth <= 200 and minColWidth <= 200, 201, maxColWidth)
where colWidth < 200 or minColWidth < 200 or maxColWidth < 200;
update zt_project
set
colWidth = if(colWidth < 200, 200, colWidth),
minColWidth = if(minColWidth < 200, 200, minColWidth),
maxColWidth = if(maxColWidth <= 200 and minColWidth <= 200, 201, maxColWidth)
where colWidth < 200 or minColWidth < 200 or maxColWidth < 200;