microservices/sql/update/20230919144707_alert_zone_d...

7 lines
243 B
SQL
Raw 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 `is_lock_cms` tinyint(1) NULL DEFAULT 0 COMMENT '资讯是否锁定中0未锁定1锁定';
SET FOREIGN_KEY_CHECKS = 1;