microservices/sql/update/20240314161812_zone_alert_a...

7 lines
246 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.

-- 特色专区专区申请表增加专区id字段
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `zone_application`
ADD COLUMN `zone_id` int(11) NULL DEFAULT NULL COMMENT '对应专区Id为空代表未创建';
SET FOREIGN_KEY_CHECKS = 1;