File List
Fluid Styled Content changes the behaviour of the layouts of file lists:
- Layout was configured by "layout", now it is configured by "uploads_type"
SQL Statement
SELECT
SELECT `uid`, `pid`, `header`, `layout`, `uploads_type` FROM `tt_content` WHERE `layout` > 0
Copied!
UPDATE
UPDATE `tt_content` SET `uploads_type` = 1 WHERE `uploads_type` = 0 AND `layout` = 1;
UPDATE `tt_content` SET `uploads_type` = 2 WHERE `uploads_type` = 0 AND `layout` > 1;
Copied!