unis_crm/sql/upgrade_opportunity_is_poc_...

17 lines
425 B
MySQL
Raw Normal View History

2026-06-10 10:05:20 +00:00
begin;
set search_path to public;
-- 商机表补充是否 POC 测试项目字段
-- 说明:
-- 1. 为 crm_opportunity 增加 is_poc 字段。
-- 2. 字段类型为 boolean默认 false兼容历史数据。
-- 3. 可重复执行。
alter table if exists crm_opportunity
add column if not exists is_poc boolean not null default false;
comment on column crm_opportunity.is_poc is '是否POC测试项目';
commit;