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;