ALTER TABLE `vt_Page` CHANGE `isSecure` `isSecure` ENUM('n','y') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'y'; ALTER TABLE `vt_DraftPage` CHANGE `isSecure` `isSecure` ENUM('n','y') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'y'; UPDATE `vt_DPageOption` SET `value` = 'y' WHERE `name` = 'isSecure'; update `vt_DraftPageOption` set `value` = 'y' where `name` = 'isSecure'; update `vt_PageOption` set `value` = 'y' where `name` = 'isSecure'; update `vt_DraftPage` set `isSecure` = 'y' where 1; update `vt_Page` set `isSecure` = 'y' where 1;