This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
SET FOREIGN_KEY_CHECKS=0;
#当更新时间为空时,将更新时间设置为创建时间
update `ruoyi-gitlink`.cms_doc set update_time=create_time where ISNULL(update_time) and is_dir=0;
SET FOREIGN_KEY_CHECKS=1;