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;