microservices/sql/update/hisotry_sql/2023-07-13-001.sql

9 lines
425 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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;
ALTER TABLE `ruoyi-gitlink`.`zone_detail`
ADD COLUMN `helper_show` tinyint(1) NULL DEFAULT 1 COMMENT '帮助中心板块是否展示0:不展示1展示';
ALTER TABLE `ruoyi-gitlink`.`zone_detail`
ADD COLUMN `helper_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '帮助中心' COMMENT '帮助中心板块标题';
SET FOREIGN_KEY_CHECKS = 1;