File indexing completed on 2024-04-21 06:00:37

0001 ALTER TABLE `config_store`
0002     ADD COLUMN `stay_in_context` INT(1) NULL DEFAULT 0 AFTER `render_view_postfix`;
0003 
0004 UPDATE `config_store` `s`
0005 SET `s`.`stay_in_context` = 0
0006 WHERE `s`.`stay_in_context` IS NULL;
0007