microservices/sql/update/20230913145119_alert_zone_r...

10 lines
346 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 `zone_detail`
ADD COLUMN `resource_need_audit` tinyint(1) NULL DEFAULT 0 COMMENT '资源是否需要审核0不需要1需要';
UPDATE zone_detail
SET `resource_need_audit` =0;
SET FOREIGN_KEY_CHECKS = 1;